mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2026-01-18 23:22:24 +01:00
51 lines
1.2 KiB
Plaintext
51 lines
1.2 KiB
Plaintext
# Maintainer: Natanael Copa <ncopa@alpinelinux.org>
|
|
pkgname=tevent
|
|
pkgver=0.9.39
|
|
pkgrel=0
|
|
pkgdesc="The tevent library"
|
|
url="https://tevent.samba.org"
|
|
arch="all"
|
|
license="LGPL-3.0-or-later"
|
|
makedepends="libtirpc-dev python3-dev talloc-dev"
|
|
replaces="samba"
|
|
subpackages="$pkgname-dev py3-$pkgname:_py3"
|
|
source="https://samba.org/ftp/tevent/tevent-$pkgver.tar.gz
|
|
fix-public-header.patch"
|
|
builddir="$srcdir/$pkgname-$pkgver"
|
|
|
|
build() {
|
|
cd "$builddir"
|
|
./configure \
|
|
--build=$CBUILD \
|
|
--host=$CHOST \
|
|
--prefix=/usr \
|
|
--sysconfdir=/etc \
|
|
--mandir=/usr/share/man \
|
|
--infodir=/usr/share/info \
|
|
--localstatedir=/var \
|
|
--disable-rpath \
|
|
--bundled-libraries=NONE \
|
|
--without-gettext
|
|
make
|
|
}
|
|
|
|
check() {
|
|
cd "$builddir"
|
|
make check
|
|
}
|
|
|
|
package() {
|
|
cd "$builddir"
|
|
make DESTDIR="$pkgdir" install
|
|
}
|
|
|
|
_py3() {
|
|
pkgdesc="Python 3 binding for the tevent library"
|
|
|
|
mkdir -p "$subpkgdir"/usr/lib
|
|
mv "$pkgdir"/usr/lib/python3* "$subpkgdir"/usr/lib/
|
|
}
|
|
|
|
sha512sums="72f48493aa3ef2efb78fa4e8cbeca8a66871e6835b51307ce08864ed0a778ccfd5f62d6768099f06680915375ee78c3b889514e247bcfe797889f16388c321b0 tevent-0.9.39.tar.gz
|
|
ee4cce8591dfe31288975596d8464b7cc160580715f88e4fd19b5ae7e1a831650b072954731f015f52d76600597faee894f0174b9e92d18dca9629f9d056230c fix-public-header.patch"
|