diff options
author | Parabola <dev@list.parabolagnulinux.org> | 2011-04-05 14:26:38 +0000 |
---|---|---|
committer | Parabola <dev@list.parabolagnulinux.org> | 2011-04-05 14:26:38 +0000 |
commit | 415856bdd4f48ab4f2732996f0bae58595092bbe (patch) | |
tree | ede2018b591f6dfb477fe9341ba17b9bc000fab9 /community/plib |
Tue Apr 5 14:26:38 UTC 2011
Diffstat (limited to 'community/plib')
-rw-r--r-- | community/plib/ChangeLog | 12 | ||||
-rw-r--r-- | community/plib/PKGBUILD | 30 |
2 files changed, 42 insertions, 0 deletions
diff --git a/community/plib/ChangeLog b/community/plib/ChangeLog new file mode 100644 index 000000000..552fd49e9 --- /dev/null +++ b/community/plib/ChangeLog @@ -0,0 +1,12 @@ +2008-10-04 Eric Belanger <eric@archlinux.org> + + * plib 1.8.5-1.1 + * Built with PIC for x86_64 + +2008-03-20 Eric Belanger <eric@archlinux.org> + + * plib 1.8.5-1 + * Upstream update + * Fixed license + * Added makedepends + * Added ChangeLog diff --git a/community/plib/PKGBUILD b/community/plib/PKGBUILD new file mode 100644 index 000000000..80374518b --- /dev/null +++ b/community/plib/PKGBUILD @@ -0,0 +1,30 @@ +# $Id: PKGBUILD 21103 2010-07-14 07:20:33Z lcarlier $ +# Maintainer: Eric Belanger <eric@archlinux.org> +# Contributor: Tom Newsom <Jeepster@gmx.co.uk> + +pkgname=plib +pkgver=1.8.5 +pkgrel=2 +pkgdesc="Set of libraries to write games and other realtime interactive applications" +arch=('i686' 'x86_64') +url="http://plib.sourceforge.net/" +license=('custom:LGPL') +makedepends=('mesa' 'libxi' 'libxmu') +source=(http://plib.sourceforge.net/dist/$pkgname-$pkgver.tar.gz) +md5sums=('47a6fbf63668c1eed631024038b2ea90') +sha1sums=('c2cf7e3e1e58f7b63dae4bb21e4fa82c3e4d4cfc') + +build() { + cd ${srcdir}/$pkgname-$pkgver + + [ "$CARCH" = "x86_64" ] && export CXXFLAGS="$CXXFLAGS -fPIC" + ./configure --prefix=/usr + make +} + +package() { + cd ${srcdir}/$pkgname-$pkgver + + make DESTDIR="${pkgdir}" install + install -D -m644 COPYING ${pkgdir}/usr/share/licenses/$pkgname/COPYING +} |