summaryrefslogtreecommitdiff
path: root/staging/allegro
diff options
context:
space:
mode:
authorParabola <dev@list.parabolagnulinux.org>2011-10-20 13:50:49 +0000
committerParabola <dev@list.parabolagnulinux.org>2011-10-20 13:50:49 +0000
commit1a136cf48dd7f710f38ff998182508f5a0d41c35 (patch)
tree34f285379061ab4346b6dcbdc30b8742cebfa22a /staging/allegro
parent6c5c865fa6674610732dd8427bf8f09f3c166299 (diff)
Thu Oct 20 13:50:46 UTC 2011
Diffstat (limited to 'staging/allegro')
-rw-r--r--staging/allegro/PKGBUILD36
1 files changed, 0 insertions, 36 deletions
diff --git a/staging/allegro/PKGBUILD b/staging/allegro/PKGBUILD
deleted file mode 100644
index af7dd6ced..000000000
--- a/staging/allegro/PKGBUILD
+++ /dev/null
@@ -1,36 +0,0 @@
-# $Id: PKGBUILD 140547 2011-10-17 03:54:53Z eric $
-# Maintainer: Ionut Biru <ibiru@archlinux.org>
-# Contributor: Tom Newsom <Jeepster@gmx.co.uk>
-# Contributor: arjan <arjan@archlinux.org>
-
-pkgname=allegro
-pkgver=5.0.4
-pkgrel=1
-pkgdesc="Portable library mainly aimed at video game and multimedia programming"
-arch=('i686' 'x86_64')
-url="http://alleg.sourceforge.net/"
-license=('custom')
-depends=('jack' 'libxpm' 'libxxf86vm' 'libxxf86dga' 'libxcursor' 'libpng' 'libgl' 'libjpeg')
-makedepends=('cmake' 'mesa')
-source=(http://downloads.sourceforge.net/alleg/${pkgname}-${pkgver}.tar.gz)
-md5sums=('e2e314ee7116c7efddd0497d6c885e46')
-
-build() {
- cd "${srcdir}"
- mkdir build && cd build
-
- cmake "../${pkgname}-${pkgver}" \
- -DCMAKE_BUILD_TYPE=Release \
- -DCMAKE_INSTALL_PREFIX=/usr \
- -DWANT_DOCS=OFF
-
- make
-}
-
-package() {
- cd "${srcdir}"/build
-
- make DESTDIR="${pkgdir}" install
-
- install -D -m644 ../${pkgname}-${pkgver}/LICENSE.txt "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
-}