diff options
| author | aethrvmn <me@aethrvmn.gr> | 2025-11-11 00:22:54 +0000 |
|---|---|---|
| committer | aethrvmn <me@aethrvmn.gr> | 2025-11-11 00:22:54 +0000 |
| commit | 735fe45533d165c31e174a8f160be0e54a9fce1a (patch) | |
| tree | 4570a2136b975437a24e468064a43f94356e1b3f /src/tesserae | |
| parent | added libwacom definition (diff) | |
added libxml2 definition
Diffstat (limited to 'src/tesserae')
| -rw-r--r-- | src/tesserae/libxml2.nim | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/src/tesserae/libxml2.nim b/src/tesserae/libxml2.nim new file mode 100644 index 0000000..68f0ff0 --- /dev/null +++ b/src/tesserae/libxml2.nim @@ -0,0 +1,24 @@ +import .. / lapis + +tessera "libxml2": + source: "https://download.gnome.org/sources/libxml2/2.14/libxml2-2.14.5.tar.xz" + patches: @[""] + dependencies: @[ + "icu" + ] + build: @[ + """ + ./configure --prefix=/usr \ + --sysconfdir=/etc \ + --disable-static \ + --with-history \ + --with-icu \ + PYTHON=/usr/bin/python3 \ + --docdir=/usr/share/doc/libxml2-2.14.5 + """, + "make", + "make install", + "rm -vf /usr/lib/libxml2.la", + "sed '/libs=/s/xml2.*/xml2\"/' -i /usr/bin/xml2-config" + ] + result: "libxml2.so" |
