summaryrefslogtreecommitdiff
path: root/community/quvi/PKGBUILD
diff options
context:
space:
mode:
Diffstat (limited to 'community/quvi/PKGBUILD')
-rw-r--r--community/quvi/PKGBUILD28
1 files changed, 28 insertions, 0 deletions
diff --git a/community/quvi/PKGBUILD b/community/quvi/PKGBUILD
new file mode 100644
index 000000000..5f2bedaa8
--- /dev/null
+++ b/community/quvi/PKGBUILD
@@ -0,0 +1,28 @@
+# $Id: PKGBUILD 59896 2011-12-02 07:00:15Z lfleischer $
+# Maintainer: Lukas Fleischer <archlinux at cryptocrack dot de>
+# Contributor: joyfulgirl@archlinux.us
+
+pkgname=quvi
+pkgver=0.4.1
+pkgrel=1
+pkgdesc='Command-line tool for parsing video download links.'
+arch=('i686' 'x86_64' 'mips64el')
+url='http://quvi.sourceforge.net/'
+license=('LGPL')
+depends=('libquvi')
+options=('!libtool')
+source=("http://downloads.sourceforge.net/sourceforge/${pkgname}/${pkgname}-${pkgver}.tar.gz"{,.sig})
+md5sums=('0975e3d8cdf570d2143c49c249e698c5'
+ '53e2e206c17cb6a38c8c6b7b427b8b4a')
+
+build() {
+ cd "${pkgname}-${pkgver}"
+
+ ./configure --prefix=/usr
+ make
+}
+
+package() {
+ cd "${pkgname}-${pkgver}"
+ make DESTDIR="${pkgdir}" install
+}