summaryrefslogtreecommitdiff
path: root/community-testing/clanlib/PKGBUILD
diff options
context:
space:
mode:
authorParabola <dev@list.parabolagnulinux.org>2012-05-04 20:00:41 +0000
committerParabola <dev@list.parabolagnulinux.org>2012-05-04 20:00:41 +0000
commitb2c353d874b85e06f355a9419852e2616613c7d0 (patch)
treef0773e0a930d308198ef5036d4f74e7f53015e6e /community-testing/clanlib/PKGBUILD
parent0a24fb835cac4007388213ad0afb15257b035b14 (diff)
Fri May 4 20:00:31 UTC 2012
Diffstat (limited to 'community-testing/clanlib/PKGBUILD')
-rw-r--r--community-testing/clanlib/PKGBUILD37
1 files changed, 0 insertions, 37 deletions
diff --git a/community-testing/clanlib/PKGBUILD b/community-testing/clanlib/PKGBUILD
deleted file mode 100644
index ca6ff88fd..000000000
--- a/community-testing/clanlib/PKGBUILD
+++ /dev/null
@@ -1,37 +0,0 @@
-# $Id: PKGBUILD 68979 2012-04-06 19:20:47Z svenstaro $
-# Maintainer: Sven-Hendrik Haase <sh@lutzhaase.com>
-
-pkgname=clanlib
-pkgver=2.3.6
-pkgrel=2
-pkgdesc="A multi-platform game development library."
-arch=('i686' 'x86_64')
-url="http://clanlib.org/"
-license=('zlib')
-depends=('alsa-lib' 'libjpeg' 'libmikmod' 'libpng' 'libvorbis' 'libxi' 'libxmu' 'mesa' 'sdl_gfx' 'freetype2' 'pcre' 'sqlite')
-makedepends=('doxygen' 'graphviz')
-options=('!libtool')
-source=(http://clanlib.org/download/releases-2.0/ClanLib-${pkgver}.tgz)
-md5sums=('aa037a8a6297fb0b2efd927b1b15e8de')
-
-build() {
- cd ${srcdir}/ClanLib-${pkgver}
-
- ./configure --prefix=/usr --enable-docs
-
- make
- # Somehow this breaks. :(
- #make html
-}
-
-package() {
- cd ${srcdir}/ClanLib-${pkgver}
-
- make DESTDIR=${pkgdir} install
- #make DESTDIR=${pkgdir} install-html
-
- install -d ${pkgdir}/usr/share/licenses/${pkgname}
- install -m644 COPYING ${pkgdir}/usr/share/licenses/${pkgname}/
-}
-
-# vim: sw=2:ts=2 et: