All checks were successful
Test / Create distribution (push) Successful in 2m40s
Test / Sandbox (push) Successful in 2m46s
Test / ShareFS (push) Successful in 3m47s
Test / Sandbox (race detector) (push) Successful in 5m28s
Test / Hakurei (race detector) (push) Successful in 6m47s
Test / Hakurei (push) Successful in 2m41s
Test / Flake checks (push) Successful in 1m31s
This replaces the '*' placeholder with a less confusing '#'. Signed-off-by: Ophestra <cat@gensokyo.uk>
38 lines
691 B
Go
38 lines
691 B
Go
package connman {
|
|
description = "a daemon for managing Internet connections";
|
|
website = "https://git.kernel.org/pub/scm/network/connman/connman.git";
|
|
anitya = 337;
|
|
|
|
version# = "2.0";
|
|
source = remoteTar {
|
|
url = "https://git.kernel.org/pub/scm/network/connman/connman.git/"+
|
|
"snapshot/connman-"+version+".tar.gz";
|
|
checksum = "MhVTdJOhndnZn2SWd8URKo_Pj7Zvc14tntEbrVOf9L3yVWJvpb3v3Q6104tWJgtW";
|
|
compress = gzip;
|
|
};
|
|
patches = [ "alpine-musl-res.patch" ];
|
|
|
|
exec = make {
|
|
generate = "./bootstrap";
|
|
};
|
|
|
|
inputs = [
|
|
automake,
|
|
libtool,
|
|
pkg-config,
|
|
|
|
dbus,
|
|
iptables,
|
|
gnutls,
|
|
readline,
|
|
kernel-headers,
|
|
];
|
|
|
|
runtime = [
|
|
dbus,
|
|
iptables,
|
|
gnutls,
|
|
readline,
|
|
];
|
|
}
|