diff options
| author | Ophestra <cat@gensokyo.uk> | 2026-05-19 22:26:40 +0900 |
|---|---|---|
| committer | Ophestra <cat@gensokyo.uk> | 2026-05-19 22:26:40 +0900 |
| commit | 1c6f30379e0b21dad7f8da21e9c7736c1fa72997 (patch) | |
| tree | 5d24065c75a14a360d3ba09903b2525a737519d5 /internal/rosa/bzip2.go | |
| parent | 009a4e0d583d14ebe328473df6468424587087a7 (diff) | |
internal/rosa/package: migrate bzip2, curl, connman
Signed-off-by: Ophestra <cat@gensokyo.uk>
Diffstat (limited to 'internal/rosa/bzip2.go')
| -rw-r--r-- | internal/rosa/bzip2.go | 36 |
1 files changed, 0 insertions, 36 deletions
diff --git a/internal/rosa/bzip2.go b/internal/rosa/bzip2.go deleted file mode 100644 index 75f721b1..00000000 --- a/internal/rosa/bzip2.go +++ /dev/null @@ -1,36 +0,0 @@ -package rosa - -import "hakurei.app/internal/pkg" - -func (t Toolchain) newBzip2() (pkg.Artifact, string) { - const ( - version = "1.0.8" - checksum = "cTLykcco7boom-s05H1JVsQi1AtChYL84nXkg_92Dm1Xt94Ob_qlMg_-NSguIK-c" - ) - return t.NewPackage("bzip2", version, newTar( - "https://sourceware.org/pub/bzip2/bzip2-"+version+".tar.gz", - checksum, - pkg.TarGzip, - ), &PackageAttr{ - Writable: true, - EnterSource: true, - }, &MakeHelper{ - // uses source tree as scratch space - SkipConfigure: true, - SkipCheck: true, - InPlace: true, - Make: []string{ - "CC=cc", - }, - Install: "make PREFIX=/work/system install", - }), version -} -func init() { - native.mustRegister(Toolchain.newBzip2, &Metadata{ - Name: "bzip2", - Description: "a freely available, patent free, high-quality data compressor", - Website: "https://sourceware.org/bzip2/", - - ID: 237, - }) -} |
