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/package/ncurses.az | |
| parent | 2e710328a4a64f5803de317c936912cf2ccddddf (diff) | |
internal/rosa/package: migrate multiple libraries
Signed-off-by: Ophestra <cat@gensokyo.uk>
Diffstat (limited to 'internal/rosa/package/ncurses.az')
| -rw-r--r-- | internal/rosa/package/ncurses.az | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/internal/rosa/package/ncurses.az b/internal/rosa/package/ncurses.az new file mode 100644 index 00000000..d4b52fa3 --- /dev/null +++ b/internal/rosa/package/ncurses.az @@ -0,0 +1,26 @@ +package ncurses { + description = "a free software emulation of curses in System V Release 4.0 (SVr4)"; + website = "https://invisible-island.net/ncurses"; + anitya = 373226; + + version* = "6.6"; + source = remoteTar { + url = "https://ftpmirror.gnu.org/gnu/ncurses/ncurses-"+version+".tar.gz"; + checksum = "XvWp4xi6hR_hH8XUoGY26L_pqBSDapJYulhzZqPuR0KNklqypqNc1yNXU-nOjf5w"; + compress = gzip; + }; + + exec = make { + configure = { + "with-pkg-config"; + "enable-pc-files"; + "with-shared"; + "with-cxx-shared"; + }; + + // "tests" are actual demo programs, not a test suite. + skipCheck = true; + }; + + inputs = [ pkg-config ]; +} |
