summaryrefslogtreecommitdiff
path: root/community/enet
diff options
context:
space:
mode:
Diffstat (limited to 'community/enet')
-rw-r--r--community/enet/PKGBUILD21
1 files changed, 13 insertions, 8 deletions
diff --git a/community/enet/PKGBUILD b/community/enet/PKGBUILD
index b2c08e8b2..1e17b4709 100644
--- a/community/enet/PKGBUILD
+++ b/community/enet/PKGBUILD
@@ -1,27 +1,32 @@
-# $Id: PKGBUILD 55996 2011-09-28 12:57:06Z jelle $
+# $Id: PKGBUILD 66600 2012-02-26 14:00:34Z lfleischer $
# Maintainer: Mateusz Herych <heniekk@gmail.com>
# Contributor: Bj?indeijer <bjorn@lindeijer.nl>
+
pkgname=enet
pkgver=1.3.3
-pkgrel=1
+pkgrel=2
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')
depends=('glibc')
+options=(!libtool)
source=("http://enet.bespin.org/download/${pkgname}-${pkgver}.tar.gz")
+md5sums=('4b0b69377fd4511e82e5f0921a942e59')
build() {
- cd ${pkgname}-${pkgver}
+ 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
+ cd "${pkgname}-${pkgver}"
+
+ make prefix="${pkgdir}/usr" install
+
+ install -m755 libenet.so.2 "${pkgdir}/usr/lib"
+ install -Dm644 LICENSE "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
}
-md5sums=('4b0b69377fd4511e82e5f0921a942e59')