diff options
Diffstat (limited to 'src/tesserae/extra/libarchive.nim')
| -rw-r--r-- | src/tesserae/extra/libarchive.nim | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/src/tesserae/extra/libarchive.nim b/src/tesserae/extra/libarchive.nim new file mode 100644 index 0000000..ec5f51b --- /dev/null +++ b/src/tesserae/extra/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" |
