aboutsummaryrefslogtreecommitdiffstats
path: root/main/libev/APKBUILD
blob: 5c6e850931f29d3d73a454b257c6ebe4e2632a6f (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
# Contributor:
# Maintainer: Natanael Copa <ncopa@alpinelinux.org>
pkgname=libev
pkgver=4.33
pkgrel=0
pkgdesc="event dispatch library"
url="http://software.schmorp.de/pkg/libev.html"
arch="all"
options="!check"  # No test suite.
license="BSD-2-Clause OR GPL-2.0-or-later"
makedepends="autoconf automake libtool"
subpackages="$pkgname-dev $pkgname-doc"
source="http://dist.schmorp.de/libev/Attic/libev-$pkgver.tar.gz
	libev-4.11-Add-pkgconfig-support.patch
	"

prepare() {
	default_prepare
	libtoolize --force && aclocal -I m4 && autoheader&&  autoconf \
		&& automake --add-missing
}

build() {
	./configure \
		--build=$CBUILD \
		--host=$CHOST \
		--prefix=/usr \
		--sysconfdir=/etc
	make
}

package() {
	make -j1 DESTDIR="$pkgdir" install
	rm "$pkgdir"/usr/include/event.h
}

sha512sums="c662a65360115e0b2598e3e8824cf7b33360c43a96ac9233f6b6ea2873a10102551773cad0e89e738541e75af9fd4f3e3c11cd2f251c5703aa24f193128b896b  libev-4.33.tar.gz
b5bc1b5ed1e605cd45a01adce70c1a97188c0b46a36333f12eccd4407c95d96f18adff90ee8c5733c1783a36b4adc5ef67d6b470104339a1ac5c4539a2a4599e  libev-4.11-Add-pkgconfig-support.patch"