Date: Thursday, November 17, 2022 @ 17:18:00
Author: heftig
Revision: 462095
archrelease: copy trunk to testing-x86_64
Added:
lzo/repos/testing-x86_64/
lzo/repos/testing-x86_64/PKGBUILD
(from rev 462094, lzo/trunk/PKGBUILD)
----------+
PKGBUILD | 42 ++++++++++++++++++++++++++++++++++++++++++
1 file changed, 42 insertions(+)
Copied: lzo/repos/testing-x86_64/PKGBUILD (from rev 462094, lzo/trunk/PKGBUILD)
===================================================================
--- testing-x86_64/PKGBUILD (rev 0)
+++ testing-x86_64/PKGBUILD 2022-11-17 17:18:00 UTC (rev 462095)
@@ -0,0 +1,42 @@
+# Contributor: Low Kian Seong <[email protected]>
+# Maintainer: dorphell <[email protected]>
+
+pkgname=lzo
+pkgver=2.10
+pkgrel=4
+pkgdesc="Portable lossless data compression library"
+arch=('x86_64')
+url="https://www.oberhumer.com/opensource/lzo"
+license=('GPL')
+depends=('glibc')
+provides=('liblzo2.so' 'libminilzo.so')
+options=('debug')
+source=(https://www.oberhumer.com/opensource/lzo/download/lzo-${pkgver}.tar.gz)
+sha1sums=('4924676a9bae5db58ef129dc1cebce3baa3c4b5d')
+
+build() {
+ cd lzo-${pkgver}
+ ./configure --prefix=/usr --enable-shared
+ make
+
+ # build minilzo
+ gcc $CPPFLAGS $CFLAGS -fpic -Iinclude/lzo -o minilzo/minilzo.o -c
minilzo/minilzo.c
+ gcc $LDFLAGS -shared -o libminilzo.so.0 -Wl,-soname,libminilzo.so.0
minilzo/minilzo.o
+}
+
+check() {
+ cd lzo-${pkgver}
+ make test # Larger test
+ make check
+}
+
+package() {
+ cd lzo-${pkgver}
+ make DESTDIR="${pkgdir}" install
+
+ # install minilzo
+ install -m 755 libminilzo.so.0 "${pkgdir}"/usr/lib
+ install -p -m 644 minilzo/minilzo.h ${pkgdir}/usr/include/lzo
+ cd "${pkgdir}"/usr/lib
+ ln -s libminilzo.so.0 libminilzo.so
+}