contrib/libcgi/Pkgfile

23 lines
431 B
Plaintext
Raw Normal View History

2023-08-13 11:14:42 +02:00
# Description: CGI library for C
# URL: https://libcgi.sourceforge.net/
# Maintainer: unmaintained
2006-11-30 05:31:05 +01:00
name=libcgi
version=1.0
2013-02-27 13:22:59 +01:00
release=2
2023-08-13 11:14:42 +02:00
source=(https://downloads.sourceforge.net/project/$name/$name/$version/$name-$version.tar.gz)
2006-11-30 05:31:05 +01:00
build() {
2023-08-13 11:14:42 +02:00
cd $name-$version
2013-02-27 13:22:59 +01:00
2023-08-13 11:14:42 +02:00
export CFLAGS="$CFLAGS -fPIC"
install -d $PKG/usr/lib $PKG/usr/include
2006-11-30 05:31:05 +01:00
2023-08-13 11:14:42 +02:00
./configure \
--prefix=/usr \
--disable-nls
2006-11-30 05:31:05 +01:00
2023-08-13 11:14:42 +02:00
make
make prefix=$PKG/usr install
2006-11-30 05:31:05 +01:00
}