summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorErich Eckner <git@eckner.net>2020-01-12 21:13:09 +0100
committerErich Eckner <git@eckner.net>2020-01-12 21:13:09 +0100
commit4521876b2a08054933d0feab79288599f5816db6 (patch)
treed53843a0d32cda810f9c23b0ba52835c1f07fc5c
parentd52142e04fbb3e80b5aa11b32d69e7b3cd70ed6f (diff)
downloadcrux-ports-4521876b2a08054933d0feab79288599f5816db6.tar.xz
dvdbackup new
-rw-r--r--manualPorts/dvdbackup/.footprint7
-rw-r--r--manualPorts/dvdbackup/.md5sum1
-rw-r--r--manualPorts/dvdbackup/.signature5
-rw-r--r--manualPorts/dvdbackup/Pkgfile20
4 files changed, 33 insertions, 0 deletions
diff --git a/manualPorts/dvdbackup/.footprint b/manualPorts/dvdbackup/.footprint
new file mode 100644
index 0000000..3b1e492
--- /dev/null
+++ b/manualPorts/dvdbackup/.footprint
@@ -0,0 +1,7 @@
+drwxr-xr-x root/root usr/
+drwxr-xr-x root/root usr/bin/
+-rwxr-xr-x root/root usr/bin/dvdbackup
+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/dvdbackup.1.gz
diff --git a/manualPorts/dvdbackup/.md5sum b/manualPorts/dvdbackup/.md5sum
new file mode 100644
index 0000000..590cc15
--- /dev/null
+++ b/manualPorts/dvdbackup/.md5sum
@@ -0,0 +1 @@
+28f273b2f27a3afea3a3c965ddbede86 dvdbackup-0.4.2.tar.xz
diff --git a/manualPorts/dvdbackup/.signature b/manualPorts/dvdbackup/.signature
new file mode 100644
index 0000000..60abb78
--- /dev/null
+++ b/manualPorts/dvdbackup/.signature
@@ -0,0 +1,5 @@
+untrusted comment: verify with /etc/ports/deepthought.pub
+RWQxCptPusLGGm2yEsRWwAHG7BvPxCvv6DSzf5ymtvMHK7mhvNBBqY5saK3f7oRishhcrOm6Mb5pmLiB/dh/PeAGcAvjYFohIgw=
+SHA256 (Pkgfile) = bc3a1db4a6bb1cddb2791639e5bbe578ef9edc9fda615413499b281375b188b0
+SHA256 (.footprint) = c12c753f9739101ce2b564e7edcfae7d79a537a713abc88a53248226caeeb923
+SHA256 (dvdbackup-0.4.2.tar.xz) = ef8c56fbb82b15b7eef00d2d3118c8253f9770009ed7bb2a5d4849acf88183e6
diff --git a/manualPorts/dvdbackup/Pkgfile b/manualPorts/dvdbackup/Pkgfile
new file mode 100644
index 0000000..f1db44b
--- /dev/null
+++ b/manualPorts/dvdbackup/Pkgfile
@@ -0,0 +1,20 @@
+# Description: Tool to rip video DVDs from the command line
+# URL: http://dvdbackup.sourceforge.net/
+# Maintainer: Erich Eckner, crux at eckner dot net
+# Contributor: Alan Mizrahi, alan at mizrahi dot com dot ve
+# Depends on: libdvdread
+
+name=dvdbackup
+version=0.4.2
+release=1
+source=(http://downloads.sourceforge.net/dvdbackup/dvdbackup-$version.tar.xz)
+
+build(){
+ cd $name-$version
+ ./configure \
+ --prefix=/usr \
+ --disable-nls
+ make
+ make DESTDIR=$PKG install
+ rm -rf $PKG/usr/share/doc
+}