22 lines
467 B
Plaintext
22 lines
467 B
Plaintext
|
# Description: thin wrapper over POSIX syscalls
|
||
|
# URL: https://github.com/sionescu/libfixposix
|
||
|
# Maintainer: John McQuah, jmcquah at disroot dot org
|
||
|
# Depends on:
|
||
|
|
||
|
name=libfixposix
|
||
|
version=0.4.3
|
||
|
release=1
|
||
|
source=(https://github.com/sionescu/$name/archive/v$version.tar.gz)
|
||
|
renames=($name-$version.tar.gz)
|
||
|
|
||
|
build() {
|
||
|
cd $name-$version
|
||
|
|
||
|
autoreconf -fi
|
||
|
./configure --prefix=/usr
|
||
|
make DESTDIR=$PKG install
|
||
|
|
||
|
# strip libtool garbage
|
||
|
rm -f $PKG/usr/lib/*.la
|
||
|
}
|