forked from rosa/hakurei
For upcoming azalea integration. The API is quite ugly right now to ease migration. Signed-off-by: Ophestra <cat@gensokyo.uk>
34 lines
688 B
Go
34 lines
688 B
Go
package rosa
|
|
|
|
import "hakurei.app/internal/pkg"
|
|
|
|
func (t Toolchain) newLibepoxy(s *S) (pkg.Artifact, string) {
|
|
const (
|
|
version = "1.5.10"
|
|
checksum = "OHI8wshrlGw6BMGrmSyejJtwzM2gPhyFJrTsKxULyKMmYrfgcOe7Iw2ibVoUND_Q"
|
|
)
|
|
return s.NewPackage(t, "libepoxy", version, newFromGitHub(
|
|
"anholt/libepoxy",
|
|
version,
|
|
checksum,
|
|
), nil, &MesonHelper{
|
|
Setup: []KV{
|
|
{"Dglx", "no"},
|
|
{"Degl", "no"},
|
|
},
|
|
},
|
|
LibX11,
|
|
), version
|
|
}
|
|
func init() {
|
|
native.MustRegister(&Artifact{
|
|
f: Toolchain.newLibepoxy,
|
|
|
|
Name: "libepoxy",
|
|
Description: "a library for handling OpenGL function pointer management",
|
|
Website: "https://github.com/anholt/libepoxy",
|
|
|
|
ID: 6090,
|
|
})
|
|
}
|