18 lines
340 B
Plaintext
18 lines
340 B
Plaintext
# Description: pthread dummy implementation
|
|
# URL: https://xcb.freedesktop.org/
|
|
# Maintainer: CRUX Xorg Team, xorg-ports at crux dot nu
|
|
|
|
name=libpthread-stubs
|
|
version=0.4
|
|
release=1
|
|
source=(https://xcb.freedesktop.org/dist/$name-$version.tar.bz2)
|
|
|
|
build() {
|
|
cd $name-$version
|
|
|
|
./configure --prefix=/usr
|
|
|
|
make
|
|
make DESTDIR=$PKG install
|
|
}
|