mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2026-02-14 12:21:47 +01:00
29 lines
721 B
Plaintext
29 lines
721 B
Plaintext
# Maintainer: Natanael Copa <ncopa@alpinelinux.org>
|
|
pkgname=libpthread-stubs
|
|
pkgver=0.3
|
|
pkgrel=2
|
|
pkgdesc="Pthread functions stubs for platforms missing them"
|
|
url="http://cgit.freedesktop.org/xcb/pthread-stubs"
|
|
arch="all"
|
|
license="X11"
|
|
depends=
|
|
source="http://xcb.freedesktop.org/dist/$pkgname-$pkgver.tar.bz2"
|
|
|
|
build() {
|
|
cd "$srcdir"/$pkgname-$pkgver
|
|
./configure \
|
|
--build=$CBUILD \
|
|
--host=$CHOST \
|
|
--prefix=/usr \
|
|
|| return 1
|
|
# we actually have pthread_exit, the configure script just
|
|
# fails to detect it
|
|
make CFLAGS="$CFLAGS -DHAVE_PTHREAD_EXIT=1"
|
|
}
|
|
|
|
package() {
|
|
cd "$srcdir"/$pkgname-$pkgver
|
|
make -j1 DESTDIR="$pkgdir" install
|
|
}
|
|
md5sums="e8fa31b42e13f87e8f5a7a2b731db7ee libpthread-stubs-0.3.tar.bz2"
|