mirror of
https://gitdl.cn/https://github.com/chakralinux/core.git
synced 2025-02-03 20:07:14 +08:00
22 lines
723 B
Bash
22 lines
723 B
Bash
# $Id: PKGBUILD 63654 2010-01-18 09:32:42Z jgc $
|
|
# Maintainer: Alexander Baldeck <alexander@archlinux.org>
|
|
# Contributor: dorphell <dorphell@archlinux.org>
|
|
pkgname=zvbi
|
|
pkgver=0.2.33
|
|
pkgrel=2
|
|
pkgdesc="VBI capture and decoding library"
|
|
url="http://zapping.sourceforge.net/cgi-bin/view/ZVBI/WebHome"
|
|
arch=(i686 x86_64)
|
|
depends=('libpng>=1.4.0' '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
|
|
}
|