summaryrefslogtreecommitdiffstats
path: root/base/cdrdao
diff options
context:
space:
mode:
Diffstat (limited to 'base/cdrdao')
-rw-r--r--base/cdrdao/.footprint15
-rw-r--r--base/cdrdao/.md5sum1
-rwxr-xr-xbase/cdrdao/Pkgfile20
3 files changed, 36 insertions, 0 deletions
diff --git a/base/cdrdao/.footprint b/base/cdrdao/.footprint
new file mode 100644
index 000000000..b4ff479c4
--- /dev/null
+++ b/base/cdrdao/.footprint
@@ -0,0 +1,15 @@
+drwxr-xr-x root/root usr/
+drwxr-xr-x root/root usr/bin/
+-rwxr-xr-x root/root usr/bin/cdrdao
+-rwxr-xr-x root/root usr/bin/cue2toc
+-rwxr-xr-x root/root usr/bin/toc2cddb
+-rwxr-xr-x root/root usr/bin/toc2cue
+drwxr-xr-x root/root usr/share/
+drwxr-xr-x root/root usr/share/cdrdao/
+-rw-r--r-- root/root usr/share/cdrdao/drivers
+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/cdrdao.1.gz
+-rw-r--r-- root/root usr/share/man/man1/cue2toc.1.gz
+-rw-r--r-- root/root usr/share/man/man1/toc2cddb.1.gz
+-rw-r--r-- root/root usr/share/man/man1/toc2cue.1.gz
diff --git a/base/cdrdao/.md5sum b/base/cdrdao/.md5sum
new file mode 100644
index 000000000..a84209052
--- /dev/null
+++ b/base/cdrdao/.md5sum
@@ -0,0 +1 @@
+8d15ba6280bb7ba2f4d6be31d28b3c0c cdrdao-1.2.3.tar.bz2
diff --git a/base/cdrdao/Pkgfile b/base/cdrdao/Pkgfile
new file mode 100755
index 000000000..371dfcf2b
--- /dev/null
+++ b/base/cdrdao/Pkgfile
@@ -0,0 +1,20 @@
+# Description: Permet la gravure de CD en mode disk-at-once
+# URL: http://cdrdao.sourceforge.net
+# Maintainer: NuTyX core team
+# Packager: thierryn1 at hispeed dot ch
+# Depends on:
+
+name=cdrdao
+version=1.2.3
+release=1
+source=( http://downloads.sourceforge.net/$name/$name-$version.tar.bz2)
+
+build() {
+ cd $name-$version
+ ./configure --prefix=/usr \
+ --mandir=/usr/share/man \
+ --infodir=/usr/share/info \
+ --without-lame
+ make
+ make DESTDIR=$PKG install
+}