2010-12-13 03:49:04 +08:00
|
|
|
#
|
|
|
|
# Games Packages for Chakra, part of chakra-project.org
|
|
|
|
#
|
|
|
|
# Maintainer: Adrián Chaves Fernández (Gallaecio) <adriyetichaves gmail.com>
|
|
|
|
|
2011-02-11 02:59:17 +08:00
|
|
|
pkgname=enet
|
2013-08-17 04:17:38 +08:00
|
|
|
pkgver=1.3.9
|
2013-08-19 15:40:43 +08:00
|
|
|
pkgrel=3
|
Added new version of Enet, 1.2.4, with rebuild of 0 A.D., Lips of Suna, Speed Dreams, and SuperTuxKart. Lips of Suna was also upgraded to its latest version, 0.3.1. Also, SuperTuxKart was upgraded to its latest version, 0.7.1b, which also meant Irrlicht was replaced by a SVN version of itself, and SuperTuxKart packages for tracks and karts were removed, since they can be installed from the game itself.
2011-06-03 14:07:34 +08:00
|
|
|
pkgdesc='A relatively thin, simple and robust network communication layer on top of UDP.'
|
2010-12-13 03:49:04 +08:00
|
|
|
arch=('i686' 'x86_64')
|
|
|
|
url='http://enet.bespin.org/'
|
2011-02-11 02:59:17 +08:00
|
|
|
license=('MIT')
|
2011-02-13 22:51:00 +08:00
|
|
|
replaces=('enet-old')
|
2010-12-13 03:49:04 +08:00
|
|
|
changelog=ChangeLog
|
2011-02-11 02:59:17 +08:00
|
|
|
source=("http://$pkgname.bespin.org/download/$pkgname-$pkgver.tar.gz")
|
2013-08-19 15:40:43 +08:00
|
|
|
md5sums=('43513288d7dc5a171cb59e3e65be361c')
|
2010-12-13 03:49:04 +08:00
|
|
|
|
|
|
|
build() {
|
2011-02-11 02:59:17 +08:00
|
|
|
cd $pkgname-$pkgver
|
2010-12-13 03:49:04 +08:00
|
|
|
|
2011-02-11 02:59:17 +08:00
|
|
|
./configure \
|
|
|
|
--prefix=/usr
|
2010-12-13 03:49:04 +08:00
|
|
|
make
|
|
|
|
}
|
|
|
|
|
|
|
|
package() {
|
2011-02-11 02:59:17 +08:00
|
|
|
cd $pkgname-$pkgver
|
2010-12-13 03:49:04 +08:00
|
|
|
|
|
|
|
make prefix=$pkgdir/usr install
|
|
|
|
|
|
|
|
# License:
|
2011-02-11 02:59:17 +08:00
|
|
|
install -D -m644 LICENSE $pkgdir/usr/share/licenses/$pkgname/LICENSE
|
2010-12-13 03:49:04 +08:00
|
|
|
}
|