internal/rosa/x: font-util and libfontenc artifact
All checks were successful
Test / Create distribution (push) Successful in 1m4s
Test / Sandbox (push) Successful in 2m53s
Test / ShareFS (push) Successful in 3m43s
Test / Hakurei (push) Successful in 3m50s
Test / Sandbox (race detector) (push) Successful in 5m27s
Test / Hakurei (race detector) (push) Successful in 6m27s
Test / Flake checks (push) Successful in 1m32s
All checks were successful
Test / Create distribution (push) Successful in 1m4s
Test / Sandbox (push) Successful in 2m53s
Test / ShareFS (push) Successful in 3m43s
Test / Hakurei (push) Successful in 3m50s
Test / Sandbox (race detector) (push) Successful in 5m27s
Test / Hakurei (race detector) (push) Successful in 6m27s
Test / Flake checks (push) Successful in 1m32s
Required by libXfont2. Signed-off-by: Ophestra <cat@gensokyo.uk>
This commit is contained in:
@@ -56,6 +56,7 @@ const (
|
|||||||
Fakeroot
|
Fakeroot
|
||||||
Findutils
|
Findutils
|
||||||
Flex
|
Flex
|
||||||
|
FontUtil
|
||||||
Freetype
|
Freetype
|
||||||
Fuse
|
Fuse
|
||||||
GMP
|
GMP
|
||||||
@@ -92,6 +93,7 @@ const (
|
|||||||
Libev
|
Libev
|
||||||
Libexpat
|
Libexpat
|
||||||
Libffi
|
Libffi
|
||||||
|
Libfontenc
|
||||||
Libgd
|
Libgd
|
||||||
Libglvnd
|
Libglvnd
|
||||||
Libiconv
|
Libiconv
|
||||||
|
|||||||
@@ -484,6 +484,73 @@ func init() {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
func (t Toolchain) newFontUtil() (pkg.Artifact, string) {
|
||||||
|
const (
|
||||||
|
version = "1.4.2"
|
||||||
|
checksum = "YWiaIxkq-N2yNdbGa_RF1S0UkQq6xsgoRT73WZP2DOmyH_CJ0TAkpQjId657MQmh"
|
||||||
|
)
|
||||||
|
return t.NewPackage("font-util", version, newFromGitLab(
|
||||||
|
"gitlab.freedesktop.org",
|
||||||
|
"xorg/font/util",
|
||||||
|
"font-util-"+version,
|
||||||
|
checksum,
|
||||||
|
), nil, &MakeHelper{
|
||||||
|
Generate: "NOCONFIGURE=1 ./autogen.sh",
|
||||||
|
},
|
||||||
|
Automake,
|
||||||
|
Libtool,
|
||||||
|
PkgConfig,
|
||||||
|
|
||||||
|
utilMacros,
|
||||||
|
), version
|
||||||
|
}
|
||||||
|
|
||||||
|
func init() {
|
||||||
|
artifactsM[FontUtil] = Metadata{
|
||||||
|
f: Toolchain.newFontUtil,
|
||||||
|
|
||||||
|
Name: "font-util",
|
||||||
|
Description: "X.Org font package creation/installation utilities",
|
||||||
|
Website: "https://gitlab.freedesktop.org/xorg/font/util",
|
||||||
|
|
||||||
|
ID: 15055,
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
func (t Toolchain) newLibfontenc() (pkg.Artifact, string) {
|
||||||
|
const (
|
||||||
|
version = "1.1.9"
|
||||||
|
checksum = "XqosXfbVwaoYzG9vVyRCl3eatwjASoJdLZsxQ37NN8S_jTyqNmbxpRSJGImJj7RS"
|
||||||
|
)
|
||||||
|
return t.NewPackage("libfontenc", version, newFromGitLab(
|
||||||
|
"gitlab.freedesktop.org",
|
||||||
|
"xorg/lib/libfontenc",
|
||||||
|
"libfontenc-"+version,
|
||||||
|
checksum,
|
||||||
|
), nil, &MakeHelper{
|
||||||
|
Generate: "NOCONFIGURE=1 ./autogen.sh",
|
||||||
|
},
|
||||||
|
Automake,
|
||||||
|
Libtool,
|
||||||
|
PkgConfig,
|
||||||
|
|
||||||
|
utilMacros,
|
||||||
|
FontUtil,
|
||||||
|
XorgProto,
|
||||||
|
), version
|
||||||
|
}
|
||||||
|
func init() {
|
||||||
|
artifactsM[Libfontenc] = Metadata{
|
||||||
|
f: Toolchain.newLibfontenc,
|
||||||
|
|
||||||
|
Name: "libfontenc",
|
||||||
|
Description: "X font encoding library",
|
||||||
|
Website: "https://gitlab.freedesktop.org/xorg/lib/libfontenc",
|
||||||
|
|
||||||
|
ID: 1613,
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
func (t Toolchain) newLibxkbfile() (pkg.Artifact, string) {
|
func (t Toolchain) newLibxkbfile() (pkg.Artifact, string) {
|
||||||
const (
|
const (
|
||||||
version = "1.2.0"
|
version = "1.2.0"
|
||||||
@@ -495,11 +562,6 @@ func (t Toolchain) newLibxkbfile() (pkg.Artifact, string) {
|
|||||||
"libxkbfile-"+version,
|
"libxkbfile-"+version,
|
||||||
checksum,
|
checksum,
|
||||||
), nil, (*MesonHelper)(nil),
|
), nil, (*MesonHelper)(nil),
|
||||||
Automake,
|
|
||||||
Libtool,
|
|
||||||
PkgConfig,
|
|
||||||
|
|
||||||
utilMacros,
|
|
||||||
LibX11,
|
LibX11,
|
||||||
), version
|
), version
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user