19 lines
437 B
Plaintext
19 lines
437 B
Plaintext
# Description: pthread dummy implementation
|
|
# URL: https://xcb.freedesktop.org
|
|
# Maintainer: CRUX compat-32 Team, compat-32-ports at crux dot nu
|
|
# Depends on: libpthread-stubs
|
|
|
|
name=libpthread-stubs-32
|
|
version=0.5
|
|
release=1
|
|
source=(https://xorg.freedesktop.org/archive/individual/lib/libpthread-stubs-$version.tar.xz)
|
|
|
|
build() {
|
|
cd ${name%-*}-$version
|
|
|
|
./configure --prefix=/usr --libdir=/usr/lib32
|
|
|
|
make
|
|
make DESTDIR=$PKG install
|
|
}
|