desktop/enet/PKGBUILD

34 lines
726 B
Bash
Raw Normal View History

#
# Games Packages for Chakra, part of chakra-project.org
#
# Maintainer: Adrián Chaves Fernández (Gallaecio) <adriyetichaves gmail.com>
pkgname=enet
2013-08-17 04:17:38 +08:00
pkgver=1.3.9
pkgrel=3
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=('43513288d7dc5a171cb59e3e65be361c')
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
}