mirror of
https://github.com/archlinuxarm/PKGBUILDs.git
synced 2024-11-18 22:54:00 +00:00
21 lines
662 B
Bash
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
|
|
}
|