diff options
author | Parabola <dev@list.parabolagnulinux.org> | 2011-04-05 14:26:38 +0000 |
---|---|---|
committer | Parabola <dev@list.parabolagnulinux.org> | 2011-04-05 14:26:38 +0000 |
commit | 415856bdd4f48ab4f2732996f0bae58595092bbe (patch) | |
tree | ede2018b591f6dfb477fe9341ba17b9bc000fab9 /community/vamps/PKGBUILD |
Tue Apr 5 14:26:38 UTC 2011
Diffstat (limited to 'community/vamps/PKGBUILD')
-rw-r--r-- | community/vamps/PKGBUILD | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/community/vamps/PKGBUILD b/community/vamps/PKGBUILD new file mode 100644 index 000000000..a5dd6a799 --- /dev/null +++ b/community/vamps/PKGBUILD @@ -0,0 +1,26 @@ +# $Id: PKGBUILD 21356 2010-07-16 05:25:17Z tdziedzic $ +# Contributor: Giovanni Scafora <giovanni@archlinux.org> +# Contributor: Stefano Zamprogno <stefano.zamprogno@gmail.com> +# Maintainer: Stefan Husmann <stefan-husmann@t-online.de> + +pkgname=vamps +pkgver=0.99.2 +pkgrel=8 +pkgdesc='Very fast requantisizing tool for backup DVDs' +arch=('i686' 'x86_64') +url='http://vamps.sourceforge.net' +license=('GPL2') +depends=('libdvdread') +source=("http://downloads.sourceforge.net/sourceforge/${pkgname}/${pkgname}-${pkgver}.tar.gz") +md5sums=('7d438185a2ae95ebb245472d9fa47d06') + +build() { + cd ${pkgname}-${pkgver} + + make + + install -D play_cell/play_cell ${pkgdir}/usr/bin/play_cell + + install ${pkgname}/${pkgname} ${pkgdir}/usr/bin/ +} + |