All checks were successful
Test / Create distribution (push) Successful in 1m4s
Test / Sandbox (push) Successful in 2m44s
Test / Hakurei (push) Successful in 3m46s
Test / ShareFS (push) Successful in 3m45s
Test / Sandbox (race detector) (push) Successful in 5m26s
Test / Hakurei (race detector) (push) Successful in 6m35s
Test / Flake checks (push) Successful in 1m46s
Signed-off-by: Ophestra <cat@gensokyo.uk>
27 lines
591 B
Plaintext
27 lines
591 B
Plaintext
package pkg-config {
|
|
description = "a helper tool used when compiling applications and libraries";
|
|
website = "https://pkgconfig.freedesktop.org";
|
|
anitya = 3649;
|
|
|
|
version* = "0.29.2";
|
|
source = remoteGitLab {
|
|
domain = "gitlab.freedesktop.org";
|
|
suffix = "pkg-config/pkg-config";
|
|
ref = "pkg-config-"+version;
|
|
checksum = "6UsGqEMA8EER_5b9N0b32UCqiRy39B6_RnPfvuslWhtFV1qYD4DfS10crGZN_TP2";
|
|
};
|
|
|
|
exec = make {
|
|
generate = "./autogen.sh --no-configure";
|
|
configure = {
|
|
"CFLAGS": "'-Wno-int-conversion'";
|
|
"with-internal-glib";
|
|
};
|
|
};
|
|
|
|
inputs = [
|
|
automake,
|
|
libtool,
|
|
];
|
|
}
|