forked from rosa/hakurei
32 lines
662 B
Go
32 lines
662 B
Go
package rosa
|
|
|
|
import "hakurei.app/internal/pkg"
|
|
|
|
func (t Toolchain) newPixman() (pkg.Artifact, string) {
|
|
const (
|
|
version = "0.46.4"
|
|
checksum = "iECDxLG9SxUrvGHqeDoaBa-b3uqdT5DC4zudjtrwb8Wodq82pyacmFNEAo4SDsiE"
|
|
)
|
|
return t.NewPackage("pixman", version, newFromGitLab(
|
|
"gitlab.freedesktop.org",
|
|
"pixman/pixman",
|
|
"pixman-"+version,
|
|
checksum,
|
|
), nil, &MesonHelper{
|
|
Setup: []KV{
|
|
{"Dtests", "enabled"},
|
|
},
|
|
}), version
|
|
}
|
|
func init() {
|
|
artifactsM[Pixman] = Metadata{
|
|
f: Toolchain.newPixman,
|
|
|
|
Name: "pixman",
|
|
Description: "a low-level software library for pixel manipulation",
|
|
Website: "https://pixman.org/",
|
|
|
|
ID: 3648,
|
|
}
|
|
}
|