# $Id: PKGBUILD 71052 2012-05-22 19:41:59Z arodseth $ # Maintainer: Alexander Rødseth # Contributor: Ionut Biru # Contributor: Tom Newsom # Contributor: arjan pkgname=allegro pkgver=5.0.6 pkgrel=3 pkgdesc="Portable library mainly aimed at video game and multimedia programming" arch=('x86_64' 'i686') url="http://alleg.sourceforge.net/" license=('custom') depends=('jack' 'libxpm' 'libxxf86dga' 'libgl' 'physfs' 'gtk2' 'libpulse') makedepends=('cmake' 'mesa') source=("http://downloads.sourceforge.net/alleg/$pkgname-$pkgver.tar.gz") sha256sums=('d981a1cac937085e6636e597c492ddb743066516c1d215c2a39e4049bd70dc24') build() { cd "$srcdir" mkdir build cd build cmake "../$pkgname-$pkgver" \ -DCMAKE_BUILD_TYPE=Release \ -DCMAKE_INSTALL_PREFIX=/usr \ -DWANT_DOCS=OFF \ -DWANT_PHYSFS=ON make } package() { cd "$srcdir/build" make DESTDIR="$pkgdir" install install -Dm644 "../$pkgname-$pkgver/LICENSE.txt" \ "$pkgdir/usr/share/licenses/$pkgname/LICENSE" } # vim:set ts=2 sw=2 et: