From 0582b0f8cd26678e741a06ba2ab42cc47a7c689a Mon Sep 17 00:00:00 2001 From: aethrvmn Date: Sun, 16 Nov 2025 21:43:49 +0100 Subject: moved non LFS tessera to extra/ --- src/tesserae/extra/libxslt.nim | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 src/tesserae/extra/libxslt.nim (limited to 'src/tesserae/extra/libxslt.nim') diff --git a/src/tesserae/extra/libxslt.nim b/src/tesserae/extra/libxslt.nim new file mode 100644 index 0000000..c982536 --- /dev/null +++ b/src/tesserae/extra/libxslt.nim @@ -0,0 +1,18 @@ +import .. / lapis + +tessera "libxslt": + source: "https://download.gnome.org/sources/libxslt/1.1/libxslt-1.1.43.tar.xz" + patches: @[""] + dependencies: @[ + "libxml2" + ] + build: @[ + """ + ./configure --prefix=/usr \ + --disable-static \ + --docdir=/usr/share/doc/libxslt-1.1.43 + """, + "make", + "make install" + ] + result: "libxslt.so" -- cgit v1.2.3