aboutsummaryrefslogtreecommitdiffhomepage
path: root/internal/rosa/ncurses.go
diff options
context:
space:
mode:
authorOphestra <cat@gensokyo.uk>2026-05-20 04:37:42 +0900
committerOphestra <cat@gensokyo.uk>2026-05-20 04:37:58 +0900
commit47f4e287fc7ec65a3de20891004462a63dea68b3 (patch)
tree24bc65bff28c00caee2da4fb4d1b282fa3eefa15 /internal/rosa/ncurses.go
parent2e710328a4a64f5803de317c936912cf2ccddddf (diff)
internal/rosa/package: migrate multiple libraries
Signed-off-by: Ophestra <cat@gensokyo.uk>
Diffstat (limited to 'internal/rosa/ncurses.go')
-rw-r--r--internal/rosa/ncurses.go36
1 files changed, 0 insertions, 36 deletions
diff --git a/internal/rosa/ncurses.go b/internal/rosa/ncurses.go
deleted file mode 100644
index be75dd14..00000000
--- a/internal/rosa/ncurses.go
+++ /dev/null
@@ -1,36 +0,0 @@
-package rosa
-
-import "hakurei.app/internal/pkg"
-
-func (t Toolchain) newNcurses() (pkg.Artifact, string) {
- const (
- version = "6.6"
- checksum = "XvWp4xi6hR_hH8XUoGY26L_pqBSDapJYulhzZqPuR0KNklqypqNc1yNXU-nOjf5w"
- )
- return t.NewPackage("ncurses", version, newTar(
- "https://ftpmirror.gnu.org/gnu/ncurses/ncurses-"+version+".tar.gz",
- checksum,
- pkg.TarGzip,
- ), nil, &MakeHelper{
- // "tests" are actual demo programs, not a test suite.
- SkipCheck: true,
-
- Configure: []KV{
- {"with-pkg-config"},
- {"enable-pc-files"},
- {"with-shared"},
- {"with-cxx-shared"},
- },
- },
- PkgConfig,
- ), version
-}
-func init() {
- native.mustRegister(Toolchain.newNcurses, &Metadata{
- Name: "ncurses",
- Description: "a free software emulation of curses in System V Release 4.0 (SVr4)",
- Website: "https://invisible-island.net/ncurses/",
-
- ID: 373226,
- })
-}