diff options
| author | aethrvmn <me@aethrvmn.gr> | 2025-11-11 00:18:17 +0000 |
|---|---|---|
| committer | aethrvmn <me@aethrvmn.gr> | 2025-11-11 00:18:17 +0000 |
| commit | c1be8ca513ec0d49abf34fd48eb00a9101c31c65 (patch) | |
| tree | f2955011c7a01d93af66ce9bd6ef42fc4190b1ff | |
| parent | added icu definition (diff) | |
added libarchive definition
Diffstat (limited to '')
| -rw-r--r-- | src/tesserae/libarchive.nim | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/src/tesserae/libarchive.nim b/src/tesserae/libarchive.nim new file mode 100644 index 0000000..ec5f51b --- /dev/null +++ b/src/tesserae/libarchive.nim @@ -0,0 +1,18 @@ +import .. / lapis + +tessera "libarchive": + source: " https://github.com/libarchive/libarchive/releases/download/v3.8.1/libarchive-3.8.1.tar.xz" + patches: @[""] + dependencies: @[ + "nettle", + "libxml2", + "lzo", + "pcre2" + ] + build: @[ + "./configure --prefix=/usr --disable-static", + "make", + "make install", + "ln -sfv bsdunzip /usr/bin/unzip" + ] + result: "libarchive.so" |
