diff options
| author | Ophestra <cat@gensokyo.uk> | 2026-05-20 03:14:11 +0900 |
|---|---|---|
| committer | Ophestra <cat@gensokyo.uk> | 2026-05-20 03:33:15 +0900 |
| commit | ef414ab01a28b61ef01766c3dd28ed2342f5ab75 (patch) | |
| tree | 314a8f471c8c052da0936549ecac2d052f52932a /internal/rosa/libxslt.go | |
| parent | 96abf266dd8bbbb4ea65c74a3f84f2461a6021a7 (diff) | |
internal/rosa/package: migrate many libraries
This also adds more string helpers.
Signed-off-by: Ophestra <cat@gensokyo.uk>
Diffstat (limited to 'internal/rosa/libxslt.go')
| -rw-r--r-- | internal/rosa/libxslt.go | 40 |
1 files changed, 0 insertions, 40 deletions
diff --git a/internal/rosa/libxslt.go b/internal/rosa/libxslt.go deleted file mode 100644 index 0161b2da..00000000 --- a/internal/rosa/libxslt.go +++ /dev/null @@ -1,40 +0,0 @@ -package rosa - -import "hakurei.app/internal/pkg" - -func (t Toolchain) newLibxslt() (pkg.Artifact, string) { - const ( - version = "1.1.45" - checksum = "67ks7v8od2oWaEGf23Sst_Xbn_8brQyolQjqxPoO-lK35k_WJhi2Px5JJgbk-nfn" - ) - return t.NewPackage("libxslt", version, newFromGitLab( - "gitlab.gnome.org", - "GNOME/libxslt", - "v"+version, checksum, - ), nil, &MakeHelper{ - Generate: "NOCONFIGURE=1 ./autogen.sh", - - // python libxml2 cyclic dependency - SkipCheck: true, - }, - Automake, - Libtool, - Python, - PkgConfig, - - Libxml2, - ), version -} -func init() { - native.mustRegister(Toolchain.newLibxslt, &Metadata{ - Name: "libxslt", - Description: "an XSLT processor based on libxml2", - Website: "https://gitlab.gnome.org/GNOME/libxslt/", - - Dependencies: P{ - Libxml2, - }, - - ID: 13301, - }) -} |
