desktop/enet/PKGBUILD
Adrian Chaves Fernandez (Gallaecio) 3c3e9e588e enet 1.3.12
Also rebuilt the following packages depending on it:
0ad
lipsofsuna
redeclipse
speed-dreams
supertuxkart
2015-01-24 14:31:42 +00:00

34 lines
727 B
Bash

#
# Games Packages for Chakra, part of chakra-project.org
#
# Maintainer: Adrián Chaves Fernández (Gallaecio) <adriyetichaves gmail.com>
pkgname=enet
pkgver=1.3.12
pkgrel=1
pkgdesc='A relatively thin, simple and robust network communication layer on top of UDP.'
arch=('i686' 'x86_64')
url='http://enet.bespin.org/'
license=('MIT')
replaces=('enet-old')
changelog=ChangeLog
source=("http://$pkgname.bespin.org/download/$pkgname-$pkgver.tar.gz")
md5sums=('2b581600a589553c1e7684ad663f27a8')
build() {
cd $pkgname-$pkgver
./configure \
--prefix=/usr
make
}
package() {
cd $pkgname-$pkgver
make prefix=$pkgdir/usr install
# License:
install -D -m644 LICENSE $pkgdir/usr/share/licenses/$pkgname/LICENSE
}