19 lines
569 B
Python
19 lines
569 B
Python
version = "2.5.1"
|
|
revision = 1
|
|
description = "Lightweight pkg-config implementation"
|
|
license = "ISC"
|
|
url = "http://pkgconf.org/"
|
|
source = tarball(
|
|
url=f"https://distfiles.ariadne.space/pkgconf/pkgconf-{version}.tar.xz",
|
|
sha256="cd05c9589b9f86ecf044c10a2269822bc9eb001eced2582cfffd658b0a50c243",
|
|
)
|
|
host_deps = ["autoconf", "automake", "binutils", "gcc"]
|
|
deps = [profile["libc"]]
|
|
|
|
configure, build, install = autotools(
|
|
configure_args=[
|
|
f"--with-system-libdir={profile['libdir']}",
|
|
f"--with-system-includedir={profile['includedir']}",
|
|
]
|
|
)
|