# $Id: PKGBUILD 42151 2011-03-14 16:17:27Z mherych $ # Maintainer: Mateusz Herych # Contributor: Bj?indeijer pkgname=enet pkgver=1.3.1 pkgrel=1 pkgdesc='A relatively thin, simple and robust network communication layer on top of UDP.' arch=('i686' 'x86_64' 'mips64el') url='http://enet.bespin.org/' license=('custom') source=("http://enet.bespin.org/download/${pkgname}-${pkgver}.tar.gz") md5sums=('d31adbd50924fe39aab3c23308f58959') build() { cd ${pkgname}-${pkgver} CFLAGS="-fPIC" ./configure --prefix=/usr make gcc -Wl,-soname,libenet.so.2 -shared -o libenet.so.2 *.o } package() { cd ${pkgname}-${pkgver} make prefix=${pkgdir}/usr install install -m 755 libenet.so.2 ${pkgdir}/usr/lib install -D -m644 LICENSE ${pkgdir}/usr/share/licenses/${pkgname}/LICENSE }