ucl: marked unmaintained

This commit is contained in:
Tim Biermann 2023-08-06 20:25:51 +02:00
parent cbe80f04f5
commit 8b658ad8ac
Signed by: tb
GPG Key ID: 42F8B4E30B673606
2 changed files with 13 additions and 15 deletions

View File

@ -1,6 +1,6 @@
untrusted comment: verify with /etc/ports/contrib.pub
RWSagIOpLGJF3/bBFFqFtnatEkT0rLUk4ORTlhfSeABmUrfRAFWsrdyvMgNdW+NYGvATAZL7O406vsbwMupGfSUC59qSITAiFg4=
SHA256 (Pkgfile) = 14f315f1fd2ff563f9fa2206036653db56eefe144e74d38941a9c69dacee0145
RWSagIOpLGJF34z3CgP5MAH9WxB8m43KKMfgXFE6X/uFAp3hP0LCtza7VIxoJV9m5r2af20U2gj4A5Qt40DG2JAPyXO7St+83wE=
SHA256 (Pkgfile) = 249e993ac07033b37d2f4d658b6c0ff9a8243b35f9c8d3bc63301cc9262e7726
SHA256 (.footprint) = 78702059aacbbc0602f0298dcc448fd1498ec75756c70ec02e7721e090e00936
SHA256 (ucl-1.03.tar.gz) = b865299ffd45d73412293369c9754b07637680e5c826915f097577cd27350348
SHA256 (ucl.pc.in) = 668f47e7fdfa75d6c3b06542d89d2b368131ccbcef5f94174ad3af89eb95ae4a

View File

@ -1,8 +1,6 @@
# Description: A portable lossless data compression library written in ANSI C.
# URL: http://www.oberhumer.com/opensource/ucl/
# Maintainer: Danny Rawlins, crux at romster dot me
# Packager: Younes Hafri ycrux at club-internet dot fr
# Depends on:
# Maintainer: unmaintained
name=ucl
version=1.03
@ -11,17 +9,17 @@ source=(http://www.oberhumer.com/opensource/ucl/download/ucl-$version.tar.gz
ucl.pc.in)
build() {
cd ucl-$version
cd ucl-$version
CFLAGS+=" -std=gnu90 -fPIC"
./configure \
--prefix=/usr \
--enable-shared \
--enable-static
CFLAGS+=" -std=gnu90 -fPIC"
./configure \
--prefix=/usr \
--enable-shared \
--enable-static
make
make prefix=$PKG/usr install
make
make prefix=$PKG/usr install
mkdir -p $PKG/usr/lib/pkgconfig/
sed "s|@VERSION@|$version|" $SRC/ucl.pc.in > $PKG/usr/lib/pkgconfig/ucl.pc
mkdir -p $PKG/usr/lib/pkgconfig/
sed "s|@VERSION@|$version|" $SRC/ucl.pc.in > $PKG/usr/lib/pkgconfig/ucl.pc
}