diff options
Diffstat (limited to 'pcr/quvi-current/PKGBUILD')
-rw-r--r-- | pcr/quvi-current/PKGBUILD | 30 |
1 files changed, 30 insertions, 0 deletions
diff --git a/pcr/quvi-current/PKGBUILD b/pcr/quvi-current/PKGBUILD new file mode 100644 index 000000000..8acfc507f --- /dev/null +++ b/pcr/quvi-current/PKGBUILD @@ -0,0 +1,30 @@ +# $Id: PKGBUILD 98182 2013-10-07 12:06:30Z jgc $ +# Maintainer: Lukas Fleischer <archlinux at cryptocrack dot de> +# Contributor: joyfulgirl@archlinux.us + +pkgname=quvi-current +_pkgname=quvi +provides=(quvi) +pkgver=0.9.5 +pkgrel=1 +pkgdesc='Command-line tool for parsing video download links.' +arch=('i686' 'x86_64') +url='http://quvi.sourceforge.net/' +license=('AGPL3') +depends=('libquvi') +options=('!libtool') +source=("http://downloads.sourceforge.net/sourceforge/${_pkgname}/${_pkgname}-${pkgver}.tar.xz"{,.sig}) + +build() { + cd "${_pkgname}-${pkgver}" + + ./configure --prefix=/usr + make +} + +package() { + cd "${_pkgname}-${pkgver}" + make DESTDIR="${pkgdir}" install +} +md5sums=('baa1d7b25e9fd173e952e27d4aa4b933' + 'SKIP') |