19 lines
492 B
Python
19 lines
492 B
Python
version = "3.3.3"
|
|
revision = 1
|
|
metadata = meta(
|
|
description = "Lightweight pkg-config implementation",
|
|
license = "ISC",
|
|
website = "http://pkgconf.org/",
|
|
)
|
|
source = tarball_source(
|
|
url = f"https://distfiles.ariadne.space/pkgconf/pkgconf-{version}.tar.xz",
|
|
sha256 = "?",
|
|
strip_components = 1,
|
|
)
|
|
host_deps = ["binutils", "gcc"]
|
|
|
|
configure, build, install = autotools(configure_args = [
|
|
"--with-system-libdir=/usr/lib",
|
|
"--with-system-includedir=/usr/include",
|
|
])
|