1
0
forked from ports/contrib

libdeflate: initial commit, version 1.14

This commit is contained in:
Tim Biermann 2022-10-30 10:44:33 +00:00
parent 682d64907f
commit 1024048d08
Signed by: tb
GPG Key ID: 42F8B4E30B673606
3 changed files with 32 additions and 0 deletions

12
libdeflate/.footprint Normal file
View File

@ -0,0 +1,12 @@
drwxr-xr-x root/root usr/
drwxr-xr-x root/root usr/bin/
-rwxr-xr-x root/root usr/bin/libdeflate-gunzip
-rwxr-xr-x root/root usr/bin/libdeflate-gzip
drwxr-xr-x root/root usr/include/
-rw-r--r-- root/root usr/include/libdeflate.h
drwxr-xr-x root/root usr/lib/
-rw-r--r-- root/root usr/lib/libdeflate.a
lrwxrwxrwx root/root usr/lib/libdeflate.so -> libdeflate.so.0
-rwxr-xr-x root/root usr/lib/libdeflate.so.0
drwxr-xr-x root/root usr/lib/pkgconfig/
-rw-r--r-- root/root usr/lib/pkgconfig/libdeflate.pc

5
libdeflate/.signature Normal file
View File

@ -0,0 +1,5 @@
untrusted comment: verify with /etc/ports/contrib.pub
RWSagIOpLGJF378XPWbUhJhZ4uYCb/RprhMNV2MK8K50n4QKhzygx7/0FWE4AeRmXAMTz8TZGuAi0phr0dV/nTPTRaxFKxI11A0=
SHA256 (Pkgfile) = 111bdae955825d0994cdcc99016acb439edc21c2c43db58b9e7d3a6743d693f2
SHA256 (.footprint) = b54f28a8404691ab4846b6a692562a564da18a2e8da2f0e3af66157cf304d0a4
SHA256 (libdeflate-1.14.tar.gz) = 89e7df898c37c3427b0f39aadcf733731321a278771d20fc553f92da8d4808ac

15
libdeflate/Pkgfile Normal file
View File

@ -0,0 +1,15 @@
# Description: Heavily optimized library for DEFLATE/zlib/gzip compression and decompression
# URL: https://github.com/ebiggers/libdeflate
# Maintainer: Tim Biermann, tbier at posteo dot de
# Depends on:
name=libdeflate
version=1.14
release=1
source=(https://github.com/ebiggers/libdeflate/archive/v$version/$name-$version.tar.gz)
build() {
cd $name-$version
make PREFIX=/usr
make PREFIX=/usr DESTDIR=$PKG install
}