forked from rosa/hakurei
4cf235675a
All flags in practice use this convention. An escape hatch is available by leaving the value empty. Signed-off-by: Ophestra <cat@gensokyo.uk>
32 lines
500 B
Go
32 lines
500 B
Go
package harfbuzz {
|
|
description = "a text shaping library";
|
|
website = "https://harfbuzz.github.io";
|
|
anitya = 1299;
|
|
|
|
version# = "14.2.1";
|
|
source = remoteGitHub {
|
|
suffix = "harfbuzz/harfbuzz";
|
|
tag = version;
|
|
checksum = "gWl1fS1nXSH9Z9GpJSrh6w7Iv6AOjZbDL_4JZAZTiTYSyLCfxIFuCRLjYmqT2nbt";
|
|
};
|
|
|
|
exec = meson {
|
|
setup = {
|
|
"cairo": "enabled";
|
|
"png": "enabled";
|
|
"zlib": "enabled";
|
|
"freetype": "enabled";
|
|
};
|
|
};
|
|
|
|
inputs = [
|
|
zlib,
|
|
cairo,
|
|
];
|
|
|
|
runtime = [
|
|
zlib,
|
|
cairo,
|
|
];
|
|
}
|