diff options
author | root <root@rshg054.dnsready.net> | 2011-10-21 23:14:54 +0000 |
---|---|---|
committer | root <root@rshg054.dnsready.net> | 2011-10-21 23:14:54 +0000 |
commit | d3d0811e23787b5c66edf94b3351a1555eb5010f (patch) | |
tree | 5fb14b5a2d0bd5b526a58d27e6fb81f04977855a /community/libquvi | |
parent | 1b21445a8e9097b0bb0542ed847fbb1eb832848f (diff) |
Fri Oct 21 23:14:53 UTC 2011
Diffstat (limited to 'community/libquvi')
-rw-r--r-- | community/libquvi/PKGBUILD | 27 |
1 files changed, 27 insertions, 0 deletions
diff --git a/community/libquvi/PKGBUILD b/community/libquvi/PKGBUILD new file mode 100644 index 000000000..1f0d35065 --- /dev/null +++ b/community/libquvi/PKGBUILD @@ -0,0 +1,27 @@ +# $Id: PKGBUILD 57076 2011-10-20 17:03:18Z lfleischer $ +# Maintainer: Lukas Fleischer <archlinux at cryptocrack dot de> + +pkgname=libquvi +pkgver=0.4.0 +pkgrel=2 +pkgdesc='Library for parsing video download links.' +arch=('i686' 'x86_64') +url='http://quvi.sourceforge.net/' +license=('LGPL') +depends=('libquvi-scripts' 'curl' 'lua') +conflicts=('quvi<0.4.0') +options=('!libtool') +source=("http://downloads.sourceforge.net/sourceforge/quvi/${pkgname}-${pkgver}.tar.gz") +md5sums=('85c47035105b6b523a28793d4f6da9f1') + +build() { + cd "${pkgname}-${pkgver}" + + ./configure --prefix=/usr + make +} + +package() { + cd "${pkgname}-${pkgver}" + make DESTDIR="${pkgdir}" install +} |