mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2024-12-04 05:20:30 +00:00
37f837bde7
Let's just use $version everywhere (we already do this for most ports).
13 lines
522 B
Bash
Executable file
13 lines
522 B
Bash
Executable file
#!/usr/bin/env -S bash ../.port_include.sh
|
|
port=pkgconf
|
|
version=1.7.3
|
|
files="https://distfiles.dereferenced.org/pkgconf/pkgconf-${version}.tar.xz pkgconf-${version}.tar.xz"
|
|
useconfigure=true
|
|
# FIXME: This looks suspiciously host-y...
|
|
configopts="--prefix=/usr/local --with-pkg-config-dir=/usr/local/lib/pkgconfig"
|
|
|
|
post_install() {
|
|
run mkdir -p "${SERENITY_BUILD_DIR}/Root/bin"
|
|
# FIXME: Same here, what is this about?!
|
|
run ln -sf /usr/local/bin/pkgconf "${SERENITY_BUILD_DIR}/Root/usr/local/bin/pkg-config"
|
|
}
|