summaryrefslogtreecommitdiffstats
path: root/dvd+rw-tools/Pkgfile
diff options
context:
space:
mode:
Diffstat (limited to 'dvd+rw-tools/Pkgfile')
-rwxr-xr-xdvd+rw-tools/Pkgfile29
1 files changed, 29 insertions, 0 deletions
diff --git a/dvd+rw-tools/Pkgfile b/dvd+rw-tools/Pkgfile
new file mode 100755
index 000000000..fef5f3a94
--- /dev/null
+++ b/dvd+rw-tools/Pkgfile
@@ -0,0 +1,29 @@
+# Description: Outils de pour la gravure des DVD+-RW
+# URL: http://fy.chalmers.se/~appro/linux/DVD+RW/
+# Maintainer: NuTyX core team
+# Packager: thierryn1 at hispeed dot ch
+# Depends on:
+
+name=dvd+rw-tools
+version=7.1
+release=1
+source=( http://fy.chalmers.se/~appro/linux/DVD+RW/tools/dvd+rw-tools-$version.tar.gz \
+ http://nutyx.meticul.eu/files/patchs/$name/transport.patch)
+
+
+build() {
+ cd $name-$version
+ patch -Np1 -i ../transport.patch
+ make
+ mkdir -p $PKG/usr/bin $PKG/usr/share/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/
+ done
+ install -m 644 growisofs.1 $PKG/usr/share/man/man1/
+}