forked from rosa/hakurei
This uses the standard CMake test target. Signed-off-by: Ophestra <cat@gensokyo.uk>
45 lines
935 B
Go
45 lines
935 B
Go
package rosa
|
|
|
|
import "hakurei.app/internal/pkg"
|
|
|
|
func (t Toolchain) newZstd() (pkg.Artifact, string) {
|
|
const (
|
|
version = "1.5.7"
|
|
checksum = "4XhfR7DwVkwo1R-TmYDAJOcx9YXv9WSFhcFUe3hWEAMmdMLPhFaznCqYIA19_xxV"
|
|
)
|
|
return t.NewPackage("zstd", version, newFromGitHubRelease(
|
|
"facebook/zstd",
|
|
"v"+version,
|
|
"zstd-"+version+".tar.gz",
|
|
checksum,
|
|
pkg.TarGzip,
|
|
), &PackageAttr{
|
|
// tests Makefile assumes writable source
|
|
Writable: true,
|
|
Chmod: true,
|
|
}, &CMakeHelper{
|
|
Append: []string{"build", "cmake"},
|
|
Cache: []KV{
|
|
{"CMAKE_BUILD_TYPE", "Release"},
|
|
},
|
|
Test: `
|
|
make -C /usr/src/zstd/tests datagen
|
|
ZSTD_BIN=/cure/programs/zstd /usr/src/zstd/tests/playTests.sh
|
|
`,
|
|
},
|
|
Make,
|
|
Diffutils,
|
|
), version
|
|
}
|
|
func init() {
|
|
artifactsM[Zstd] = Metadata{
|
|
f: Toolchain.newZstd,
|
|
|
|
Name: "zstd",
|
|
Description: "a fast compression algorithm",
|
|
Website: "https://facebook.github.io/zstd/",
|
|
|
|
ID: 12083,
|
|
}
|
|
}
|