summaryrefslogtreecommitdiffstats
path: root/dvd+rw-tools
diff options
context:
space:
mode:
authortnut <tnut at nutyx dot com>2012-01-08 12:15:45 +0100
committertnut <tnut at nutyx dot com>2012-01-08 12:15:45 +0100
commit3f57a7f93b3e7550cbd73036f6a56654e17d1d5c (patch)
tree819b14ab0377fe2054fe59866669d904e9e0b4b5 /dvd+rw-tools
parentc9972ec7f32bf9d37388e853fe9bf633e242d05a (diff)
downloadnutyx-extra-3f57a7f93b3e7550cbd73036f6a56654e17d1d5c.tar.gz
nutyx-extra-3f57a7f93b3e7550cbd73036f6a56654e17d1d5c.tar.bz2
nutyx-extra-3f57a7f93b3e7550cbd73036f6a56654e17d1d5c.tar.xz
nutyx-extra-3f57a7f93b3e7550cbd73036f6a56654e17d1d5c.zip
split de git pakxe et NuTyX-extra
Diffstat (limited to 'dvd+rw-tools')
-rw-r--r--dvd+rw-tools/.footprint.i68611
-rw-r--r--dvd+rw-tools/.footprint.x86_6411
-rw-r--r--dvd+rw-tools/.md5sum.i6862
-rw-r--r--dvd+rw-tools/.md5sum.x86_642
-rwxr-xr-xdvd+rw-tools/Pkgfile29
5 files changed, 55 insertions, 0 deletions
diff --git a/dvd+rw-tools/.footprint.i686 b/dvd+rw-tools/.footprint.i686
new file mode 100644
index 000000000..d59c959bf
--- /dev/null
+++ b/dvd+rw-tools/.footprint.i686
@@ -0,0 +1,11 @@
+drwxr-xr-x root/root usr/
+drwxr-xr-x root/root usr/bin/
+-rwxr-xr-x root/root usr/bin/dvd+rw-booktype
+-rwxr-xr-x root/root usr/bin/dvd+rw-format
+-rwxr-xr-x root/root usr/bin/dvd+rw-mediainfo
+-rwxr-xr-x root/root usr/bin/dvd-ram-control
+-rwxr-xr-x root/root usr/bin/growisofs
+drwxr-xr-x root/root usr/share/
+drwxr-xr-x root/root usr/share/man/
+drwxr-xr-x root/root usr/share/man/man1/
+-rw-r--r-- root/root usr/share/man/man1/growisofs.1.gz
diff --git a/dvd+rw-tools/.footprint.x86_64 b/dvd+rw-tools/.footprint.x86_64
new file mode 100644
index 000000000..d59c959bf
--- /dev/null
+++ b/dvd+rw-tools/.footprint.x86_64
@@ -0,0 +1,11 @@
+drwxr-xr-x root/root usr/
+drwxr-xr-x root/root usr/bin/
+-rwxr-xr-x root/root usr/bin/dvd+rw-booktype
+-rwxr-xr-x root/root usr/bin/dvd+rw-format
+-rwxr-xr-x root/root usr/bin/dvd+rw-mediainfo
+-rwxr-xr-x root/root usr/bin/dvd-ram-control
+-rwxr-xr-x root/root usr/bin/growisofs
+drwxr-xr-x root/root usr/share/
+drwxr-xr-x root/root usr/share/man/
+drwxr-xr-x root/root usr/share/man/man1/
+-rw-r--r-- root/root usr/share/man/man1/growisofs.1.gz
diff --git a/dvd+rw-tools/.md5sum.i686 b/dvd+rw-tools/.md5sum.i686
new file mode 100644
index 000000000..2f2ee35d0
--- /dev/null
+++ b/dvd+rw-tools/.md5sum.i686
@@ -0,0 +1,2 @@
+8acb3c885c87f6838704a0025e435871 dvd+rw-tools-7.1.tar.gz
+da4850d50d9db5e3d4c278cd2a68d4f2 transport.patch
diff --git a/dvd+rw-tools/.md5sum.x86_64 b/dvd+rw-tools/.md5sum.x86_64
new file mode 100644
index 000000000..2f2ee35d0
--- /dev/null
+++ b/dvd+rw-tools/.md5sum.x86_64
@@ -0,0 +1,2 @@
+8acb3c885c87f6838704a0025e435871 dvd+rw-tools-7.1.tar.gz
+da4850d50d9db5e3d4c278cd2a68d4f2 transport.patch
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/
+}