desktop/libquvi-scripts/PKGBUILD

25 lines
688 B
Bash

# Maintainer: Neophytos Kolokotronis <tetris4 AT gmail DOT com>
# Contributions from Arch: https://projects.archlinux.org/svntogit/packages.git/tree/trunk?h=packages/libquvi-scripts
pkgname=libquvi-scripts
pkgver=0.9.20131104
pkgrel=1
pkgdesc='Library for parsing video download links.'
arch=('any')
url='http://quvi.sourceforge.net/'
license=('AGPL3')
depends=('lua')
source=("http://downloads.sourceforge.net/sourceforge/quvi/${pkgname}-${pkgver}.tar.xz")
md5sums=('0ddb9e392b46cee0e7a4af260bc1a1a3')
build() {
cd "${pkgname}-${pkgver}"
./configure --prefix=/usr --with-nsfw --with-geoblocked
make
}
package() {
cd "${pkgname}-${pkgver}"
make DESTDIR="${pkgdir}" install
}