diff options
author | Linus Groh <mail@linusgroh.de> | 2021-03-11 20:03:52 +0100 |
---|---|---|
committer | Andreas Kling <kling@serenityos.org> | 2021-03-13 13:13:03 +0100 |
commit | 37f837bde7a56b449be2d7225d5bcf8d03c4b632 (patch) | |
tree | 96d91109d55cfdd9ba036fde0b9572f0704c295b /Ports/pkgconf | |
parent | 81079ae61636c1f7f32f64466d55d82ae72d67d3 (diff) | |
download | serenity-37f837bde7a56b449be2d7225d5bcf8d03c4b632.zip |
Ports: Replace hardcoded versions in 'files' URLs
Let's just use $version everywhere (we already do this for most ports).
Diffstat (limited to 'Ports/pkgconf')
-rwxr-xr-x | Ports/pkgconf/package.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Ports/pkgconf/package.sh b/Ports/pkgconf/package.sh index 0940cefdbb..ef55505806 100755 --- a/Ports/pkgconf/package.sh +++ b/Ports/pkgconf/package.sh @@ -1,7 +1,7 @@ #!/usr/bin/env -S bash ../.port_include.sh port=pkgconf version=1.7.3 -files="https://distfiles.dereferenced.org/pkgconf/pkgconf-1.7.3.tar.xz pkgconf-1.7.3.tar.xz" +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" |