diff options
Diffstat (limited to 'community/quvi/PKGBUILD')
-rw-r--r-- | community/quvi/PKGBUILD | 27 |
1 files changed, 27 insertions, 0 deletions
diff --git a/community/quvi/PKGBUILD b/community/quvi/PKGBUILD new file mode 100644 index 000000000..0db615d35 --- /dev/null +++ b/community/quvi/PKGBUILD @@ -0,0 +1,27 @@ +# $Id: PKGBUILD 43700 2011-03-29 09:36:38Z lfleischer $ +# Maintainer: Lukas Fleischer <archlinux at cryptocrack dot de> +# Contributor: joyfulgirl@archlinux.us + +pkgname=quvi +pkgver=0.2.14 +pkgrel=1 +pkgdesc='Command-line tool for parsing video download links.' +arch=('i686' 'x86_64') +url='http://quvi.googlecode.com/' +license=('LGPL') +depends=('curl' 'pcre' 'lua') +options=('!libtool') +source=("http://${pkgname}.googlecode.com/files/${pkgname}-${pkgver}.tar.bz2") +md5sums=('9958319e82232dea781526198b98985e') + +build() { + cd "${pkgname}-${pkgver}" + + ./configure --prefix=/usr + make +} + +package() { + cd "${pkgname}-${pkgver}" + make DESTDIR="${pkgdir}" install +} |