mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2025-05-13 06:54:35 +02:00
39 lines
1.1 KiB
Text
39 lines
1.1 KiB
Text
# Maintainer: Natanael Copa <ncopa@alpinelinux.org>
|
|
pkgname=libev
|
|
pkgver=4.33
|
|
pkgrel=1
|
|
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
|
|
update_config_sub
|
|
|
|
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"
|