28 lines
749 B
Bash
28 lines
749 B
Bash
# Maintainer: Jesus E. <heckyel@riseup.net>
|
|
|
|
pkgname=vamps
|
|
pkgver=0.99.2
|
|
pkgrel=1
|
|
pkgdesc="Very fast requantisizing tool for backup DVDs"
|
|
arch=('i686' 'x86_64')
|
|
url='http://vamps.sourceforge.net'
|
|
license=('GPL-2')
|
|
depends=('libdvdread')
|
|
source=("https://downloads.sourceforge.net/sourceforge/${pkgname}/${pkgname}-${pkgver}.tar.gz")
|
|
sha512sums=('27d26a5b63982e3b68b69b6e4f739e93a8eff2ca2e433e07a1350cafe9733f0b6a684e6bc51bce97612bc85fef9d4bf4ea0e781e493b227896de4cce4cd4662b')
|
|
|
|
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/
|
|
|
|
install -Dm644 COPYING -t "$pkgdir/usr/share/licenses/$pkgname"
|
|
}
|