18 lines
358 B
Plaintext
18 lines
358 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.5
|
|
release=1
|
|
source=(https://xorg.freedesktop.org/archive/individual/lib/$name-$version.tar.xz)
|
|
|
|
build() {
|
|
cd $name-$version
|
|
|
|
./configure --prefix=/usr
|
|
|
|
make
|
|
make DESTDIR=$PKG install
|
|
}
|