lzo: use https and syntax

This commit is contained in:
Tim Biermann 2021-12-13 12:07:12 +01:00
parent ac23158a41
commit 103c4d4b8f
Signed by: tb
GPG Key ID: 42F8B4E30B673606
2 changed files with 13 additions and 13 deletions

View File

@ -1,5 +1,5 @@
untrusted comment: verify with /etc/ports/core.pub
RWRJc1FUaeVeqkOHgExe/i97NlRGnLh2/FladwYdfQ12xKovfTRvCDDf8ObxOam8B3SD1rm+Fmo2Tnb4eIR6yoQSSdf3yTeSQg0=
SHA256 (Pkgfile) = fc6637818c86441119695ab207adab52dcacd8a9d822c95f84ec1094494ed7e0
RWRJc1FUaeVeqvX8+eSc8ep6HNDHfAtqCou+bdIbqx8QVZdWIxoYbB4zaWSgNPWcH2P5IXzDfXZMvEsC3NDTUbYdjYACXDwa8gQ=
SHA256 (Pkgfile) = 67537578f53b6cda7e1f740757ece332d5b50880cfe96345464cb8df5d86d8a7
SHA256 (.footprint) = 0cb108d090f1739be3a4443750fa265205fed9c87c5e64c7b0f4e58fcbdd454c
SHA256 (lzo-2.10.tar.gz) = c0f892943208266f9b6543b3ae308fab6284c5c90e627931446fb49b4221a072

View File

@ -1,22 +1,22 @@
# Description: A portable lossless data compression library
# URL: http://www.oberhumer.com/opensource/lzo/
# Maintainer: CRUX System Team, core-ports at crux dot nu
# URL: https://www.oberhumer.com/opensource/lzo/
# Maintainer: CRUX System Team, core-ports at crux dot nu
name=lzo
version=2.10
release=1
source=(http://www.oberhumer.com/opensource/lzo/download/$name-$version.tar.gz)
source=(https://www.oberhumer.com/opensource/lzo/download/$name-$version.tar.gz)
build() {
cd $name-$version
cd $name-$version
./configure --prefix=/usr --enable-shared
make
make DESTDIR=$PKG install
./configure --prefix=/usr --enable-shared
make
make DESTDIR=$PKG install
install -d $PKG/lib
mv $PKG/usr/lib/liblzo2.so.* $PKG/lib
ln -sf ../../lib/$(readlink $PKG/lib/liblzo2.so.2) $PKG/usr/lib/liblzo2.so
install -d $PKG/lib
mv $PKG/usr/lib/liblzo2.so.* $PKG/lib
ln -sf ../../lib/$(readlink $PKG/lib/liblzo2.so.2) $PKG/usr/lib/liblzo2.so
rm -r $PKG/usr/share
rm -r $PKG/usr/share
}