From 3ee93968e10126adc7dad5c8872f0170c3421e13 Mon Sep 17 00:00:00 2001 From: zorz Date: Tue, 5 May 2026 18:29:35 +0300 Subject: various obsolette --- libarchive/MAKEPKG | 28 ++++++++++++++++++++++++++++ 1 file changed, 28 insertions(+) create mode 100644 libarchive/MAKEPKG (limited to 'libarchive') diff --git a/libarchive/MAKEPKG b/libarchive/MAKEPKG new file mode 100644 index 0000000..d993042 --- /dev/null +++ b/libarchive/MAKEPKG @@ -0,0 +1,28 @@ +#!/bin/mkpkg +# description: Multi-format archive and compression library +# url: https://libarchive.org/ + +name=libarchive +version=3.8.2 +release=1 +depends=(acl bzip2 xz zlib zstd) +source=(https://github.com/libarchive/libarchive/releases/download/v$version/$name-$version.tar.xz) +build() { + cd $name-$version + + ./configure \ + --prefix=/usr \ + --mandir=/usr/share/man \ + --without-xml2 \ + --without-nettle \ + --without-libb2 \ + --without-iconv \ + --disable-static + + make + make DESTDIR=$PKG install + + rm -f $PKG/usr/lib/*.la +} + +# vim: filetype=sh -- cgit v1.2.3