libcgi: marked unmaintained

This commit is contained in:
Tim Biermann 2023-08-13 11:14:42 +02:00
parent 057696aab4
commit 7a8fc62663
Signed by: tb
GPG Key ID: 42F8B4E30B673606
2 changed files with 14 additions and 15 deletions

View File

@ -1,5 +1,5 @@
untrusted comment: verify with /etc/ports/contrib.pub
RWSagIOpLGJF37YzNqZMNqs6qg3qtZCWHs533z5/FGLMKez/1v7A/hCgVKYufp1s/rPx1I3G9isNI/9im+GNpKOD8DRABC5SfwA=
SHA256 (Pkgfile) = d36d1ecd360e057fb2879cf6b56213d3983dbdce7e157a168c92cfd3785bfd9a
RWSagIOpLGJF3yzDgwDbi6Rjd7S7G7wofPBjNhx/1ijNVvs87jY5alFW9NjuYNltV1z0KjzswTfcDXOfvmPgP50atPBekCZuBQg=
SHA256 (Pkgfile) = bd9285954f586937ee65652e9aa1ed65d14a5003e51dde3200ef86287466291d
SHA256 (.footprint) = 6ddcd13a6fafeccffc0924a1102dbc067f20c271c6f3fe1fd293331ac6911952
SHA256 (libcgi-1.0.tar.gz) = 861df39cc0195d43419c4c3de8dff4f42478db66c9ba0b0c1e994c99400e130c

View File

@ -1,23 +1,22 @@
# Description: CGI library for C.
# URL: http://libcgi.sourceforge.net/
# Maintainer: Danny Rawlins, crux at romster dot me
# Packager: Ivan Lyangouzov, tzong at crux dot spb dot ru
# Description: CGI library for C
# URL: https://libcgi.sourceforge.net/
# Maintainer: unmaintained
name=libcgi
version=1.0
release=2
source=(http://downloads.sourceforge.net/project/$name/$name/$version/$name-$version.tar.gz)
source=(https://downloads.sourceforge.net/project/$name/$name/$version/$name-$version.tar.gz)
build() {
cd $name-$version
cd $name-$version
export CFLAGS="$CFLAGS -fPIC"
install -d $PKG/usr/lib $PKG/usr/include
export CFLAGS="$CFLAGS -fPIC"
install -d $PKG/usr/lib $PKG/usr/include
./configure \
--prefix=/usr \
--disable-nls
./configure \
--prefix=/usr \
--disable-nls
make
make prefix=$PKG/usr install
make
make prefix=$PKG/usr install
}