blob: 0316b249c5e1e653aa9cc160ef30ba5e4181bb42 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
|
# Maintainer: Chocobo1 <chocobo1 AT archlinux DOT net>
pkgname=enet-git
pkgver=r254.g0eaf48e
pkgrel=1
pkgdesc="A thin, simple and robust network communication layer on top of UDP"
arch=('i686' 'x86_64')
url="http://enet.bespin.org/"
license=('MIT')
depends=('glibc')
makedepends=('git')
provides=('enet')
conflicts=('enet')
options=('staticlibs')
source=("git+https://github.com/lsalzman/enet.git")
sha256sums=('SKIP')
pkgver() {
cd "enet"
_rev=$(git rev-list --count --all)
_hash=$(git rev-parse --short HEAD)
printf "r%s.g%s" "$_rev" "$_hash"
}
build() {
cd "enet"
autoreconf -fi
./configure \
--prefix="/usr"
make
}
package() {
cd "enet"
make DESTDIR="$pkgdir" install
install -Dm644 "LICENSE" -t "$pkgdir/usr/share/licenses/enet"
}
|