16 lines
374 B
Plaintext
16 lines
374 B
Plaintext
# Description: POSIX library for priority-based and scheduled multi threading
|
|
# URL: https://gnupg.org/software/npth/index.html
|
|
# Maintainer: Tim Biermann, tbier at posteo dot de
|
|
|
|
name=npth
|
|
version=1.7
|
|
release=1
|
|
source=(https://gnupg.org/ftp/gcrypt/npth/$name-$version.tar.bz2)
|
|
|
|
build() {
|
|
cd $name-$version
|
|
./configure --prefix=/usr
|
|
make
|
|
make DESTDIR=$PKG install
|
|
}
|