blob: d99007295375350bcc56dc96d675b91aacf7d59d (
plain)
1 # Description: The GNU Portable Threads library
2 # URL: http://www.gnu.org/software/pth/
3 # Maintainer: Thomas Penteker, tek at serverop dot de
4
5 name=libpth
6 version=2.0.7
7 release=1
8 source=(https://ftp.gnu.org/pub/gnu/pth/pth-$version.tar.gz)
9
10 build() {
11 cd pth-$version
12
13 ./configure --prefix=/usr --mandir=/usr/share/man
14 make -j1
15 make -j1 DESTDIR=$PKG install
16 }
|