aboutsummaryrefslogtreecommitdiffstats
path: root/main/libev/APKBUILD
blob: cf14492447e13f12d059b5d05fc4a5a03bb00852 (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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
# Contributor: William Pitcock <nenolod@dereferenced.org>
# Maintainer: Natanael Copa <ncopa@alpinelinux.org>
pkgname=libev
pkgver=4.15
pkgrel=0
pkgdesc="event dispatch library"
url="http://libev.schmorp.de/"
arch="all"
license="BSD GPL"
depends=
depends_dev=
makedepends="$depends_dev autoconf automake libtool"
install=""
subpackages="$pkgname-dev $pkgname-doc"
source="http://dist.schmorp.de/${pkgname}/${pkgname}-${pkgver}.tar.gz
	libev-4.11-Add-pkgconfig-support.patch
	modernize-configure.ac.patch
	"

_builddir="${srcdir}/${pkgname}-${pkgver}"
prepare() {
	local i
	cd "$_builddir"
	for i in $source; do
		case $i in
		*.patch) msg $i; patch -p1 -i "$srcdir"/$i || return 1;;
		esac
	done
	update_config_sub || return 1
	libtoolize --force && aclocal && autoconf && autoheader \
		&& automake --add-missing
}

build() {
	cd "$_builddir"
	./configure \
		--build=$CBUILD \
		--host=$CHOST \
		--prefix=/usr \
		--sysconfdir=/etc \
		|| return 1
	make || return 1
}

package() {
	cd "$_builddir"
	make -j1 DESTDIR="$pkgdir" install || return 1
	rm "$pkgdir"/usr/include/event.h \
		"$pkgdir"/usr/lib/*.la
}

md5sums="3a73f247e790e2590c01f3492136ed31  libev-4.15.tar.gz
acec6b40b5ebea613fb0829f84e8a48b  libev-4.11-Add-pkgconfig-support.patch
706ce3b6f333326ee3baa9bf6c631928  modernize-configure.ac.patch"
sha256sums="b2dd43a073556f5350cbed05b6ef444dcc4b563f4e0b1009d7bf448261606feb  libev-4.15.tar.gz
2228eb682631655678e172a647238bf9c00b5ea8e732b45795e45fe5d79e1ffb  libev-4.11-Add-pkgconfig-support.patch
9fd00ab7cc6a6ef63ebf2d7f71717c7ebf8da21e0e3d953a79febf8490548e93  modernize-configure.ac.patch"
sha512sums="bb3ab98d92e565bf2273d71c9004b84ad3b305c4e883482392fe6c701949344731bb4e391ac77578f71d9a80f0ec4b6afc2ae5449d4093cdcbee26d7dc17929d  libev-4.15.tar.gz
b5bc1b5ed1e605cd45a01adce70c1a97188c0b46a36333f12eccd4407c95d96f18adff90ee8c5733c1783a36b4adc5ef67d6b470104339a1ac5c4539a2a4599e  libev-4.11-Add-pkgconfig-support.patch
03c277f7253694db8c2710c2f28eda24abf96651740ef6e4c2d49bf88f04d98f93fbc6f87df0621bb4d944f3b2743ffc7bcfdd72a72327e173756965f08daa77  modernize-configure.ac.patch"