Added 'plib' from the Chakra Community Repository.

This commit is contained in:
chaves 2011-02-09 18:44:25 +00:00
parent 7534f2bdc4
commit cdf8d984d7
2 changed files with 49 additions and 0 deletions

17
plib/ChangeLog Normal file
View File

@ -0,0 +1,17 @@
2010-09-20 Adrián Chaves Fernández (Gallaecio) <adriyetichaves gmail.com>
* 1.8.5-1 :
Imported from Arch Linux Packages to Chakra's CCR.
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

32
plib/PKGBUILD Normal file
View File

@ -0,0 +1,32 @@
#
# Games Packages for Chakra, part of chakra-project.org
#
# Maintainer: Adrián Chaves Fernández (Gallaecio) <adriyetichaves gmail.com>
# include global config
source ../_buildscripts/${current_repo}-${_arch}-cfg.conf
pkgname=plib
pkgver=1.8.5
pkgrel=1
pkgdesc="Set of libraries to write games and other realtime interactive applications."
arch=('i686' 'x86_64')
url="http://plib.sourceforge.net/"
license=('LGPL')
makedepends=('libxi' 'libxmu' 'mesa')
changelog=ChangeLog
source=(http://plib.sourceforge.net/dist/$pkgname-$pkgver.tar.gz)
md5sums=('47a6fbf63668c1eed631024038b2ea90')
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
}