diff options
Diffstat (limited to 'community/enet/PKGBUILD')
-rw-r--r-- | community/enet/PKGBUILD | 28 |
1 files changed, 0 insertions, 28 deletions
diff --git a/community/enet/PKGBUILD b/community/enet/PKGBUILD deleted file mode 100644 index 2e1f2a1ad..000000000 --- a/community/enet/PKGBUILD +++ /dev/null @@ -1,28 +0,0 @@ -# $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" -} |