mirror of
https://github.com/archlinuxarm/PKGBUILDs.git
synced 2024-11-08 22:45:43 +00:00
23 lines
611 B
Bash
23 lines
611 B
Bash
# Maintainer: Tobias Powalowski <tpowa@archlinux.org>
|
|
|
|
pkgname=capseo
|
|
pkgver=0.3
|
|
pkgrel=1
|
|
pkgdesc="Capseo video codec"
|
|
arch=('arm')
|
|
url="http://dev.gentoo.org/~trapni/capseo/"
|
|
license=('GPL2')
|
|
depends=('libgl' 'gcc-libs')
|
|
options=('force' '!libtool')
|
|
makedepends=('pkgconfig' 'mesa' 'libogg')
|
|
source=(ftp://ftp.archlinux.org/other/capseo/${pkgname}-${pkgver}.tar.gz)
|
|
md5sums=('bd869e8c9b1081e90a44567092ea8c5e')
|
|
|
|
build() {
|
|
# start building
|
|
cd "${srcdir}"
|
|
./autogen.sh || return 1
|
|
./configure --prefix=/usr --disable-static || return 1
|
|
make || return 1
|
|
make DESTDIR="${pkgdir}" install || return 1
|
|
}
|