blob: 3074062710bd759bfa583ed42a9fc9d32a0a4fd1 (
plain)
1 # Description: POSIX library for priority-based and scheduled multi threading
2 # URL: https://gnupg.org/software/npth/index.html
3 # Maintainer: Tim Biermann, tbier at posteo dot de
4
5 name=npth
6 version=1.6
7 release=1
8 source=(https://gnupg.org/ftp/gcrypt/npth/$name-$version.tar.bz2)
9
10 build() {
11 cd $name-$version
12 ./configure --prefix=/usr
13 make
14 make DESTDIR=$PKG install
15 }
|