From 08058eeb3f1cf7f34ec23206cdf59b59a5befacf Mon Sep 17 00:00:00 2001 From: davidovski Date: Sat, 15 Jan 2022 23:10:05 +0000 Subject: moved libarchive to tip for now --- repo/tip/libarchive.xibuild | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100644 repo/tip/libarchive.xibuild (limited to 'repo/tip') diff --git a/repo/tip/libarchive.xibuild b/repo/tip/libarchive.xibuild new file mode 100644 index 0000000..80c60c4 --- /dev/null +++ b/repo/tip/libarchive.xibuild @@ -0,0 +1,20 @@ +#!/bin/bash + +DEPS=(acl bzip2 expat lz4 openssl xz zlib zstd) + +SOURCE=https://github.com/libarchive/libarchive/releases/download/v3.5.2/libarchive-3.5.2.tar.gz + +DESC="A library that provides a single interface for reading and writing various compression formats" + +build () { + sed -i '436a if ((OSSL_PROVIDER_load(NULL, "legacy")) == NULL) \ + return (ARCHIVE_FAILED);' libarchive/archive_digest.c + + ./configure --prefix=/usr --disable-static + + make +} + +package() { + make DESTDIR=$PKG_DEST install +} -- cgit v1.2.1