initial import

This commit is contained in:
2025-06-22 20:39:04 -05:00
commit f8a70886f0
3428 changed files with 302546 additions and 0 deletions

27
vamps/PKGBUILD Normal file
View File

@@ -0,0 +1,27 @@
# 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"
}