mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2025-10-17 18:31:28 +02:00
testing/quvi: new aport
Command line tool for parsing video download links http://quvi.sourceforge.net/
This commit is contained in:
parent
2b5f5f5688
commit
a9fbced61d
44
testing/quvi/APKBUILD
Normal file
44
testing/quvi/APKBUILD
Normal file
@ -0,0 +1,44 @@
|
||||
# Contributor: Natanael Copa <ncopa@alpinelinux.org>
|
||||
# Maintainer: Natanael Copa <ncopa@alpinelinux.org>
|
||||
pkgname=quvi
|
||||
pkgver=0.2.14
|
||||
pkgrel=0
|
||||
pkgdesc="Command line tool for parsing video download links"
|
||||
url="http://quvi.sourceforge.net/"
|
||||
arch="all"
|
||||
license="LGPLv2+"
|
||||
depends=
|
||||
depends_dev="curl-dev pcre-dev lua-dev zlib-dev openssl-dev"
|
||||
makedepends="$depends_dev"
|
||||
install=""
|
||||
subpackages="$pkgname-dev $pkgname-doc"
|
||||
source="http://downloads.sourceforge.net/project/quvi/${pkgver%.*}/quvi-$pkgver.tar.gz"
|
||||
|
||||
_builddir="$srcdir"/quvi-$pkgver
|
||||
prepare() {
|
||||
local i
|
||||
cd "$_builddir"
|
||||
for i in $source; do
|
||||
case $i in
|
||||
*.patch) msg $i; patch -p1 -i "$srcdir"/$i || return 1;;
|
||||
esac
|
||||
done
|
||||
}
|
||||
|
||||
build() {
|
||||
cd "$_builddir"
|
||||
./configure --prefix=/usr \
|
||||
--sysconfdir=/etc \
|
||||
--mandir=/usr/share/man \
|
||||
--infodir=/usr/share/info \
|
||||
--localstatedir=/var \
|
||||
|| return 1
|
||||
make || return 1
|
||||
}
|
||||
|
||||
package() {
|
||||
cd "$_builddir"
|
||||
make DESTDIR="$pkgdir" install || return 1
|
||||
}
|
||||
|
||||
md5sums="4d61d310e42cecb9534f134c9f2488cf quvi-0.2.14.tar.gz"
|
Loading…
x
Reference in New Issue
Block a user