contrib/ucl/Pkgfile

28 lines
650 B
Plaintext
Raw Normal View History

2006-12-04 20:20:51 +01:00
# Description: A portable lossless data compression library written in ANSI C.
# URL: http://www.oberhumer.com/opensource/ucl/
2014-11-10 13:28:07 +01:00
# Maintainer: Danny Rawlins, crux at romster dot me
2006-12-04 20:20:51 +01:00
# Packager: Younes Hafri ycrux at club-internet dot fr
# Depends on:
2007-04-01 11:24:36 +02:00
name=ucl
2006-12-04 20:20:51 +01:00
version=1.03
2022-10-29 21:31:53 +02:00
release=3
source=(http://www.oberhumer.com/opensource/ucl/download/ucl-$version.tar.gz
ucl.pc.in)
2006-12-04 20:20:51 +01:00
build() {
cd ucl-$version
2020-05-24 15:28:34 +02:00
CFLAGS+=" -std=gnu90 -fPIC"
2006-12-04 20:20:51 +01:00
./configure \
--prefix=/usr \
2022-10-29 21:31:53 +02:00
--enable-shared \
--enable-static
2006-12-04 20:20:51 +01:00
2007-04-01 11:24:36 +02:00
make
make prefix=$PKG/usr install
2006-12-04 20:20:51 +01:00
2022-10-29 21:31:53 +02:00
mkdir -p $PKG/usr/lib/pkgconfig/
sed "s|@VERSION@|$version|" $SRC/ucl.pc.in > $PKG/usr/lib/pkgconfig/ucl.pc
}