PKGBUILDs/extra/zvbi/PKGBUILD

22 lines
662 B
Bash
Raw Normal View History

2009-10-10 02:23:22 +00:00
# Maintainer: Alexander Baldeck <alexander@archlinux.org>
# Contributor: dorphell <dorphell@archlinux.org>
2009-10-10 15:49:59 +00:00
2009-10-10 02:23:22 +00:00
pkgname=zvbi
pkgver=0.2.33
pkgrel=1
pkgdesc="VBI capture and decoding library"
url="http://zapping.sourceforge.net/cgi-bin/view/ZVBI/WebHome"
2009-10-10 15:49:59 +00:00
arch=('arm')
2009-10-10 02:23:22 +00:00
depends=('libpng' 'libx11')
license=('GPL')
options=('!libtool')
source=(http://downloads.sourceforge.net/sourceforge/zapping/${pkgname}-${pkgver}.tar.bz2)
md5sums=('1741a6045c3eedfb611d645f2da69ac8')
build() {
cd "${srcdir}/${pkgname}-${pkgver}"
./configure --prefix=/usr --disable-static --mandir=/usr/share/man || return 1
make || return 1
make DESTDIR="${pkgdir}" install || return 1
}