diff options
| author | Ophestra <cat@gensokyo.uk> | 2026-05-20 04:37:42 +0900 |
|---|---|---|
| committer | Ophestra <cat@gensokyo.uk> | 2026-05-20 04:37:58 +0900 |
| commit | 47f4e287fc7ec65a3de20891004462a63dea68b3 (patch) | |
| tree | 24bc65bff28c00caee2da4fb4d1b282fa3eefa15 /internal/rosa/musl-fts.go | |
| parent | 2e710328a4a64f5803de317c936912cf2ccddddf (diff) | |
internal/rosa/package: migrate multiple libraries
Signed-off-by: Ophestra <cat@gensokyo.uk>
Diffstat (limited to 'internal/rosa/musl-fts.go')
| -rw-r--r-- | internal/rosa/musl-fts.go | 34 |
1 files changed, 0 insertions, 34 deletions
diff --git a/internal/rosa/musl-fts.go b/internal/rosa/musl-fts.go deleted file mode 100644 index a5b38a21..00000000 --- a/internal/rosa/musl-fts.go +++ /dev/null @@ -1,34 +0,0 @@ -package rosa - -import "hakurei.app/internal/pkg" - -func (t Toolchain) newMuslFts() (pkg.Artifact, string) { - const ( - version = "1.2.7" - checksum = "N_p_ZApX3eHt7xoDCw1hLf6XdJOw7ZSx7xPvpvAP0knG2zgU0zeN5w8tt5Pg60XJ" - ) - return t.NewPackage("musl-fts", version, newFromGitHub( - "void-linux/musl-fts", - "v"+version, - checksum, - ), &PackageAttr{ - Env: []string{ - "CC=cc -fPIC", - }, - }, &MakeHelper{ - Generate: "./bootstrap.sh", - }, - Automake, - Libtool, - PkgConfig, - ), version -} -func init() { - native.mustRegister(Toolchain.newMuslFts, &Metadata{ - Name: "musl-fts", - Description: "implementation of fts(3) functions which are missing in musl libc", - Website: "https://github.com/void-linux/musl-fts", - - ID: 26980, - }) -} |
