blob: 7c2b9e71da99a7031e69493ea1ace2ec081076c8 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
#!/bin/sh
MAKEDEPS="make autoconf libtool"
DEPS="acl bzip2 expat lz4 openssl xz zlib zstd"
PKG_VER=3.6.1
SOURCE=https://github.com/libarchive/libarchive/releases/download/v$PKG_VER/libarchive-$PKG_VER.tar.xz
DESC="A library that provides a single interface for reading and writing various compression formats"
prepare () {
sed -i '436a if ((OSSL_PROVIDER_load(NULL, "legacy")) == NULL) \
return (ARCHIVE_FAILED);' libarchive/archive_digest.c
}
build () {
./configure --prefix=/usr --disable-static --without-xml2 --without-nettle
make
}
package() {
make DESTDIR=$PKG_DEST install
}
|