PKGBUILDs/extra/zvbi/PKGBUILD
2009-10-10 10:49:59 -05:00

21 lines
662 B
Bash

# Maintainer: Alexander Baldeck <alexander@archlinux.org>
# Contributor: dorphell <dorphell@archlinux.org>
pkgname=zvbi
pkgver=0.2.33
pkgrel=1
pkgdesc="VBI capture and decoding library"
url="http://zapping.sourceforge.net/cgi-bin/view/ZVBI/WebHome"
arch=('arm')
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
}