diff options
author | root <root@rshg054.dnsready.net> | 2013-07-19 01:10:32 -0700 |
---|---|---|
committer | root <root@rshg054.dnsready.net> | 2013-07-19 01:10:32 -0700 |
commit | 8fbc0076a4827ddc6af92e0b9daa4c4c31450808 (patch) | |
tree | 03fd0e2921ebd53228d9a93e32ed3976b636cbea /community/vamps | |
parent | e445a313723389ba9ee1fded025c567dae5b21ea (diff) |
Fri Jul 19 01:09:18 PDT 2013
Diffstat (limited to 'community/vamps')
-rw-r--r-- | community/vamps/PKGBUILD | 29 |
1 files changed, 29 insertions, 0 deletions
diff --git a/community/vamps/PKGBUILD b/community/vamps/PKGBUILD new file mode 100644 index 000000000..a949e9e95 --- /dev/null +++ b/community/vamps/PKGBUILD @@ -0,0 +1,29 @@ +# $Id: PKGBUILD 83866 2013-02-05 22:51:15Z lcarlier $ +# 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=10 +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 +} + +package() { + cd ${pkgname}-${pkgver} + + install -D play_cell/play_cell ${pkgdir}/usr/bin/play_cell + install ${pkgname}/${pkgname} ${pkgdir}/usr/bin/ +} + |