summaryrefslogtreecommitdiff
path: root/community/allegro
diff options
context:
space:
mode:
authorroot <root@rshg054.dnsready.net>2013-08-11 01:21:34 -0700
committerroot <root@rshg054.dnsready.net>2013-08-11 01:21:34 -0700
commit18a41d682d6e91e0d28fce23eb75292f477bd620 (patch)
treebce8f660d7d0b6541cadbc49bf1bac2434e4c0c6 /community/allegro
parent0ade1da67addf154d93c6a6399b0a3d5a18a3336 (diff)
Sun Aug 11 01:21:31 PDT 2013
Diffstat (limited to 'community/allegro')
-rw-r--r--community/allegro/PKGBUILD40
1 files changed, 0 insertions, 40 deletions
diff --git a/community/allegro/PKGBUILD b/community/allegro/PKGBUILD
deleted file mode 100644
index b432c47e3..000000000
--- a/community/allegro/PKGBUILD
+++ /dev/null
@@ -1,40 +0,0 @@
-# $Id: PKGBUILD 93187 2013-06-27 16:11:54Z arodseth $
-# Maintainer: Alexander Rødseth <rodseth@gmail.com>
-# Contributor: Ionut Biru <ibiru@archlinux.org>
-# Contributor: Tom Newsom <Jeepster@gmx.co.uk>
-# Contributor: arjan <arjan@archlinux.org>
-
-pkgname=allegro
-pkgver=5.0.10
-pkgrel=1
-pkgdesc='Portable library mainly aimed at video game and multimedia programming'
-arch=('x86_64' 'i686')
-url='http://alleg.sourceforge.net/'
-license=('custom')
-makedepends=('cmake' 'mesa-libgl' 'glu')
-depends=('jack' 'libxpm' 'libxxf86dga' 'libgl' 'physfs' 'gtk2' 'libpulse')
-source=("http://downloads.sourceforge.net/alleg/$pkgname-$pkgver.tar.gz")
-sha256sums=('71b81080f34f6e485edd0c51f22923c18ff967d5db438e591e6f3885d5bdcda1')
-
-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: