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/package/libucontext.az | |
| 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/package/libucontext.az')
| -rw-r--r-- | internal/rosa/package/libucontext.az | 28 |
1 files changed, 28 insertions, 0 deletions
diff --git a/internal/rosa/package/libucontext.az b/internal/rosa/package/libucontext.az new file mode 100644 index 00000000..0be5b1d0 --- /dev/null +++ b/internal/rosa/package/libucontext.az @@ -0,0 +1,28 @@ +package libucontext { + description = "ucontext implementation featuring glibc-compatible ABI"; + website = "https://github.com/kaniini/libucontext"; + anitya = 17085; + + version* = "1.5.1"; + source = remoteGitHub { + suffix = "kaniini/libucontext"; + tag = "libucontext-"+version; + checksum = "mUgeyJknjMxT-5fORzz-rqhZfP3Y7EZGBhOwvhuX7MsF4Pk9wkuwtrLf5IML-jWu"; + }; + + // uses source tree as scratch space + writable = true; + chmod = true; + enterSource = true; + + exec = make { + omitDefaults = true; + skipConfigure = true; + inPlace = true; + + make = [ + "ARCH=" + linuxArch, + ]; + install = "make prefix=/system DESTDIR=/work install"; + }; +} |
