diff options
author | Han Boetes <han@mijncomputer.nl> | 2006-11-13 21:12:21 +0100 |
---|---|---|
committer | Han Boetes <han@mijncomputer.nl> | 2006-11-13 21:12:21 +0100 |
commit | 32295a9faf0f964a313a84bb5a4e3fdeaf15e72f (patch) | |
tree | 48bd60cc85026b7f5effe956cd01e09d1e66234c /vobcopy | |
parent | 4d6af94f215944409f18f85d1804bc04c3d32efd (diff) | |
download | contrib-32295a9faf0f964a313a84bb5a4e3fdeaf15e72f.tar.gz contrib-32295a9faf0f964a313a84bb5a4e3fdeaf15e72f.tar.xz |
abiword: initial release
Diffstat (limited to 'vobcopy')
-rw-r--r-- | vobcopy/.footprint | 6 | ||||
-rw-r--r-- | vobcopy/.md5sum | 1 | ||||
-rw-r--r-- | vobcopy/Pkgfile | 20 |
3 files changed, 27 insertions, 0 deletions
diff --git a/vobcopy/.footprint b/vobcopy/.footprint new file mode 100644 index 000000000..9a9cdb9af --- /dev/null +++ b/vobcopy/.footprint @@ -0,0 +1,6 @@ +drwxr-xr-x root/root usr/ +drwxr-xr-x root/root usr/bin/ +-rwxr-xr-x root/root usr/bin/vobcopy +drwxr-xr-x root/root usr/man/ +drwxr-xr-x root/root usr/man/man1/ +-rw-r--r-- root/root usr/man/man1/vobcopy.1.gz diff --git a/vobcopy/.md5sum b/vobcopy/.md5sum new file mode 100644 index 000000000..29ef59651 --- /dev/null +++ b/vobcopy/.md5sum @@ -0,0 +1 @@ +5a5efee3b678da69b391eb76b15fc49f vobcopy-1.0.0.tar.bz2 diff --git a/vobcopy/Pkgfile b/vobcopy/Pkgfile new file mode 100644 index 000000000..8d2a2c198 --- /dev/null +++ b/vobcopy/Pkgfile @@ -0,0 +1,20 @@ +# Description: vobcopy copies DVD .vob files to harddisk +# URL: http://vobcopy.org/ +# Maintainer: Han Boetes <han@mijncomputer.nl> +# Packager: Martin Opel <mo@obbl-net.de> +# Depends on: libdvdread + +name=vobcopy +version=1.0.0 +release=1 +source="http://lpn.rnbhq.org/download/$name-$version.tar.bz2" + +build() +{ + cd $name-$version + sh ./configure.sh --prefix=$PKG/usr + install -d $PKG/usr/{bin,man/man1} + make + make install + rm -rf $PKG/usr/man/de/ +} |