diff options
author | Alon Ivtsan <alonivtsan@lavabit.com> | 2013-08-24 09:09:49 +0300 |
---|---|---|
committer | Alon Ivtsan <alonivtsan@lavabit.com> | 2013-08-24 09:09:49 +0300 |
commit | 207752a24faf0847885ceb76228e48bf28d04a72 (patch) | |
tree | 667742630782727c47e27e5f0a2d7173533b0d3b /pcr/libquvi-scripts-current | |
parent | f7b995ebfcd0663b969101ef338990540c09bbb5 (diff) |
adding libquvi-scripts-current PKGBUILD to pcr
Diffstat (limited to 'pcr/libquvi-scripts-current')
-rw-r--r-- | pcr/libquvi-scripts-current/PKGBUILD | 28 |
1 files changed, 28 insertions, 0 deletions
diff --git a/pcr/libquvi-scripts-current/PKGBUILD b/pcr/libquvi-scripts-current/PKGBUILD new file mode 100644 index 000000000..ed6aa3a03 --- /dev/null +++ b/pcr/libquvi-scripts-current/PKGBUILD @@ -0,0 +1,28 @@ +# $Id: PKGBUILD 188870 2013-06-23 17:45:51Z heftig $ +# Maintainer: Lukas Fleischer <archlinux at cryptocrack dot de> + +pkgname=libquvi-scripts-current +_pkgname=libquvi-scripts +provides=(libquvi-scripts) +pkgver=0.4.17 +pkgrel=1 +pkgdesc='Library for parsing video download links.' +arch=('any') +url='http://quvi.sourceforge.net/' +license=('LGPL') +depends=('curl' 'lua') +options=('!libtool') +source=("http://downloads.sourceforge.net/sourceforge/quvi/${_pkgname}-${pkgver}.tar.xz"{,.sig}) +md5sums=('8a887905a368bf31e0ace28e49b5c800' + 'SKIP') + +build() { + cd "${_pkgname}-${pkgver}" + ./configure --prefix=/usr --with-nsfw --with-nlfy + make +} + +package() { + cd "${_pkgname}-${pkgver}" + make DESTDIR="${pkgdir}" install +} |