diff options
author | Tim Biermann <tbier@posteo.de> | 2022-01-09 02:07:16 +0100 |
---|---|---|
committer | Tim Biermann <tbier@posteo.de> | 2022-01-09 02:07:16 +0100 |
commit | 63be97a72509481a1e727ca45678f9335db11128 (patch) | |
tree | 49d2a3cb9782a1513fd1a76a2fb5f8a62958f4af /lzlib | |
parent | 1d3207a7db7ba785fc7c56fe3267c5b96caacfcc (diff) | |
download | core-63be97a72509481a1e727ca45678f9335db11128.tar.gz core-63be97a72509481a1e727ca45678f9335db11128.tar.xz |
lzlib: initial commit, version 1.12
Diffstat (limited to 'lzlib')
-rw-r--r-- | lzlib/.footprint | 5 | ||||
-rw-r--r-- | lzlib/.signature | 5 | ||||
-rw-r--r-- | lzlib/Pkgfile | 18 |
3 files changed, 28 insertions, 0 deletions
diff --git a/lzlib/.footprint b/lzlib/.footprint new file mode 100644 index 00000000..408a02b7 --- /dev/null +++ b/lzlib/.footprint @@ -0,0 +1,5 @@ +drwxr-xr-x root/root usr/ +drwxr-xr-x root/root usr/include/ +-rw-r--r-- root/root usr/include/lzlib.h +drwxr-xr-x root/root usr/lib/ +-rw-r--r-- root/root usr/lib/liblz.a diff --git a/lzlib/.signature b/lzlib/.signature new file mode 100644 index 00000000..fb6f7b7a --- /dev/null +++ b/lzlib/.signature @@ -0,0 +1,5 @@ +untrusted comment: verify with /etc/ports/core.pub +RWRJc1FUaeVeqiWGx16l1NjQ3dVSPmrrbNRg4l8L7wLKXX+SbjHdEq49OvTTBXEZZU8Vtxx6g/KWjDUXU65lFePmYPEsgCS9Nwo= +SHA256 (Pkgfile) = 0af543ab0f2c5ad6e4ec143a7969eb21d6f789318ed0c7140e85d14dadace742 +SHA256 (.footprint) = 492e1ee45f1c99d9b38f7536f98efe5822c6c24838508b019d2b4346d0c38179 +SHA256 (lzlib-1.12.tar.gz) = 8e5d84242eb52cf1dcc98e58bd9ba8ef1aefa501431abdd0273a22bf4ce337b1 diff --git a/lzlib/Pkgfile b/lzlib/Pkgfile new file mode 100644 index 00000000..4c09a488 --- /dev/null +++ b/lzlib/Pkgfile @@ -0,0 +1,18 @@ +# Description: Data compression library +# URL: http://lzip.nongnu.org/lzlib.html +# Maintainer: CRUX System Team, core-ports at crux dot nu + +name=lzlib +version=1.12 +release=1 +source=(http://download.savannah.gnu.org/releases/lzip/lzlib/lzlib-$version.tar.gz) + +build() { + cd $name-$version + + ./configure --prefix=/usr CFLAGS="$CFLAGS" + make + make DESTDIR=$PKG install + + rm -r $PKG/usr/share +} |