summaryrefslogtreecommitdiff
path: root/repo/system
diff options
context:
space:
mode:
authordavidovski <david@davidovski.xyz>2022-01-31 11:52:36 +0000
committerdavidovski <david@davidovski.xyz>2022-01-31 11:52:36 +0000
commit3fb37480e2c1da7252691a6e80ce610c2916350a (patch)
tree7cd314da89af306293da39c48ef5f7d61417e9c2 /repo/system
parentb23b2a5311ae2bec5f20b1b7ebcd2887679b37b0 (diff)
updated configure options for libarchive
Diffstat (limited to 'repo/system')
-rw-r--r--repo/system/libarchive.xibuild5
1 files changed, 3 insertions, 2 deletions
diff --git a/repo/system/libarchive.xibuild b/repo/system/libarchive.xibuild
index 0153b44..85fcc1e 100644
--- a/repo/system/libarchive.xibuild
+++ b/repo/system/libarchive.xibuild
@@ -3,7 +3,8 @@
MAKEDEPS=(make )
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
+PKG_VER=3.5.2
+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"
@@ -13,7 +14,7 @@ prepare () {
}
build () {
- ./configure --prefix=/usr --disable-static
+ ./configure --prefix=/usr --disable-static --without-xml2 --without-nettle
make
}