diff options
Diffstat (limited to 'community/enet')
-rw-r--r-- | community/enet/PKGBUILD | 28 |
1 files changed, 28 insertions, 0 deletions
diff --git a/community/enet/PKGBUILD b/community/enet/PKGBUILD new file mode 100644 index 000000000..2e1f2a1ad --- /dev/null +++ b/community/enet/PKGBUILD @@ -0,0 +1,28 @@ +# $Id: PKGBUILD 92446 2013-06-05 15:30:42Z svenstaro $ +# Maintainer: Sven-Hendrik Haase <sh@lutzhaase.com> +# Contributor: Mateusz Herych <heniekk@gmail.com> +# Contributor: Bj?indeijer <bjorn@lindeijer.nl> + +pkgname=enet +pkgver=1.3.8 +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=('custom') +depends=('glibc') +options=('!libtool') +source=("http://enet.bespin.org/download/${pkgname}-${pkgver}.tar.gz") +sha1sums=('72284b0699ace09c1723fd532742077ca775b724') + +build() { + cd "${pkgname}-${pkgver}" + ./configure --prefix=/usr + make +} + +package() { + cd "${pkgname}-${pkgver}" + make DESTDIR="${pkgdir}" install + install -Dm644 LICENSE "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE" +} |