dvd+rw-tools: adopted and updated to 7.0

This commit is contained in:
Simon Gloner 2006-10-02 21:33:03 +00:00
parent 9dca3048a9
commit 0f3b9e6a75
2 changed files with 14 additions and 7 deletions

View File

@ -1 +1 @@
d6bad594e55a2e0d7cf76ce452fce399 dvd+rw-tools-6.1.tar.gz
2eb9c2a6b1e6bc7c4d72d3b5ece34ceb dvd+rw-tools-7.0.tar.gz

View File

@ -1,21 +1,28 @@
# Description: Tools to write DVDs
# URL: http://fy.chalmers.se/~appro/linux/DVD+RW/
# Maintainer: sten, nick dot steeves at shaw dot ca
# Packager:
# Maintainer: Simon Gloßner, viper at hometux dot de
# Packager: sten, nick dot steeves at shaw dot ca
# Depends on: cdrtools
name=dvd+rw-tools
version=6.1
version=7.0
release=1
source=(http://fy.chalmers.se/~appro/linux/DVD+RW/tools/$name-$version.tar.gz)
build() {
cd $name-$version
make
mkdir -p $PKG/usr/bin $PKG/usr/man/man1
for exec in dvd+rw-booktype dvd+rw-format dvd+rw-mediainfo dvd-ram-control\
growisofs; do
install -m 755 $exec $PKG/usr/bin/
for exec in \
dvd+rw-booktype \
dvd+rw-format \
dvd+rw-mediainfo \
dvd-ram-control \
growisofs
do
install -m 755 $exec $PKG/usr/bin/
done
install -m 644 growisofs.1 $PKG/usr/man/man1/
}