diff options
| author | Ophestra <cat@gensokyo.uk> | 2026-03-01 23:54:40 +0900 |
|---|---|---|
| committer | Ophestra <cat@gensokyo.uk> | 2026-03-02 01:24:50 +0900 |
| commit | cc60e0d15d79916a69c8a1caeb3c4611351bb6c4 (patch) | |
| tree | 67f4f59ed7ba7b18af51338e56ffa8d9acf52da6 /internal/rosa/libucontext.go | |
| parent | 9deaf853f0676ee4475468bffd35aae7e1160a74 (diff) | |
internal/rosa/make: migrate to helper interface
This also updates all affected artifacts to use new behaviour.
Signed-off-by: Ophestra <cat@gensokyo.uk>
Diffstat (limited to 'internal/rosa/libucontext.go')
| -rw-r--r-- | internal/rosa/libucontext.go | 24 |
1 files changed, 12 insertions, 12 deletions
diff --git a/internal/rosa/libucontext.go b/internal/rosa/libucontext.go index 838c2e41..cf2333e2 100644 --- a/internal/rosa/libucontext.go +++ b/internal/rosa/libucontext.go @@ -7,24 +7,24 @@ func (t Toolchain) newLibucontext() pkg.Artifact { version = "1.5" checksum = "Ggk7FMmDNBdCx1Z9PcNWWW6LSpjGYssn2vU0GK5BLXJYw7ZxZbA2m_eSgT9TFnIG" ) - return t.NewViaMake("libucontext", version, t.NewPatchedSource( - "libucontext", version, pkg.NewHTTPGetTar( - nil, "https://github.com/kaniini/libucontext/archive/refs/tags/"+ - "libucontext-"+version+".tar.gz", - mustDecode(checksum), - pkg.TarGzip, - ), false, - ), &MakeAttr{ - Writable: true, + return t.NewPackage("libucontext", version, pkg.NewHTTPGetTar( + nil, "https://github.com/kaniini/libucontext/archive/refs/tags/"+ + "libucontext-"+version+".tar.gz", + mustDecode(checksum), + pkg.TarGzip, + ), &PackageAttr{ + // uses source tree as scratch space + Writable: true, + Chmod: true, + EnterSource: true, + }, &MakeHelper{ OmitDefaults: true, SkipConfigure: true, InPlace: true, - - ScriptEarly: "cd /usr/src/libucontext", Make: []string{ "ARCH=" + linuxArch(), }, - ScriptInstall: "make prefix=/system DESTDIR=/work install", + Install: "make prefix=/system DESTDIR=/work install", }) } func init() { artifactsF[Libucontext] = Toolchain.newLibucontext } |
