diff options
Diffstat (limited to 'src/tesserae/extra/libxslt.nim')
| -rw-r--r-- | src/tesserae/extra/libxslt.nim | 18 |
1 files changed, 18 insertions, 0 deletions
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" |
