diff options
| author | Ophestra <cat@gensokyo.uk> | 2026-05-17 16:44:13 +0900 |
|---|---|---|
| committer | Ophestra <cat@gensokyo.uk> | 2026-05-17 17:50:30 +0900 |
| commit | 38bc2c750842826c5af4f66abe3e1905258cd274 (patch) | |
| tree | 75e1d17961fd980ff8b20a9dfd937789de10836e /internal/rosa/unzip.go | |
| parent | 30eb0d6a613ad268f6805ccbcdcabf158e7f526f (diff) | |
internal/rosa: pass stage alongside state
This cleans up many function signatures.
Signed-off-by: Ophestra <cat@gensokyo.uk>
Diffstat (limited to 'internal/rosa/unzip.go')
| -rw-r--r-- | internal/rosa/unzip.go | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/internal/rosa/unzip.go b/internal/rosa/unzip.go index 8c3f16b5..888a36f5 100644 --- a/internal/rosa/unzip.go +++ b/internal/rosa/unzip.go @@ -6,12 +6,12 @@ import ( "hakurei.app/internal/pkg" ) -func (t Toolchain) newUnzip(s *S) (pkg.Artifact, string) { +func (t Toolchain) newUnzip() (pkg.Artifact, string) { const ( version = "6.0" checksum = "fcqjB1IOVRNJ16K5gTGEDt3zCJDVBc7EDSra9w3H93stqkNwH1vaPQs_QGOpQZu1" ) - return s.New(t, "unzip-"+version, 0, s.AppendPresets(t, nil, + return t.New("unzip-"+version, 0, t.Append(nil, Make, Coreutils, ), nil, nil, ` @@ -21,7 +21,7 @@ make -f unix/Makefile generic1 mkdir -p /work/system/bin/ mv unzip /work/system/bin/ -`, pkg.Path(AbsUsrSrc.Append("unzip"), true, s.NewPatchedSource(t, +`, pkg.Path(AbsUsrSrc.Append("unzip"), true, t.NewPatchedSource( "unzip", version, newTar( "https://downloads.sourceforge.net/project/infozip/"+ "UnZip%206.x%20%28latest%29/UnZip%20"+version+"/"+ |
