contrib/gsm/Pkgfile

26 lines
644 B
Plaintext
Raw Normal View History

2015-08-05 10:31:34 +02:00
# Description: GSM library
# URL: http://www.quut.com/gsm/
2017-04-13 14:23:16 +02:00
# Maintainer: Alan Mizrahi, alan at mizrahi dot com dot ve
2015-08-05 10:31:34 +02:00
name=gsm
2020-06-08 21:17:21 +02:00
version=1.0.19
2020-02-09 05:26:37 +01:00
release=1
2020-06-08 21:17:21 +02:00
source=(http://www.quut.com/$name/$name-$version.tar.gz
gsm.patch)
2015-08-05 10:31:34 +02:00
build() {
cd $name-${version%.*}-pl${version##*.}
# Patch to build shared library instead of static
patch -p0 -i $SRC/gsm.patch
2020-01-20 16:00:26 +01:00
install -d -m 755 $PKG/usr/{bin,include/gsm,share/man/man{1,3},lib}
2015-08-05 10:31:34 +02:00
make CCFLAGS="-c $CFLAGS -fPIC"
2020-02-09 05:26:37 +01:00
make -j1 INSTALL_ROOT=$PKG/usr \
GSM_INSTALL_INC="$PKG"/usr/include/gsm \
GSM_INSTALL_MAN="$PKG"/usr/share/man/man3 \
TOAST_INSTALL_MAN="$PKG"/usr/share/man/man1 \
install
2015-08-05 10:31:34 +02:00
}