blob: fe92375038e434de12ce3eaea429e75680ae4329 (
plain)
1 # Description: Library for parsing video download links. - Scripts
2 # URL: http://quvi.sourceforge.net/
3 # Maintainer: Maximilian Dietrich, dxm at openmailbox dot org
4 # Depends on: curl lua
5
6 name=libquvi-scripts
7 version=0.4.19
8 release=1
9 source=(http://downloads.sourceforge.net/sourceforge/quvi/$name-$version.tar.xz)
10
11 build () {
12 cd "$name-$version"
13 ./configure --prefix=/usr --mandir=/usr/man --with-nsfw --with-nlfy
14 make
15 make DESTDIR=$PKG \
16 install
17 rm -rf $(find $PKG/usr/share -name README)
18 }
|