diff options
author | Tim Biermann <tbier@posteo.de> | 2021-12-14 09:57:26 +0100 |
---|---|---|
committer | Tim Biermann <tbier@posteo.de> | 2022-01-10 16:28:04 +0100 |
commit | b837243d079be5fa34fe88be4f57e4437172ffab (patch) | |
tree | c28738901c10c52bf5f9cf6201fe27dfc6092904 /iputils | |
parent | 1765c8abef8039e4690439d213b76f4b4018749d (diff) | |
download | opt-b837243d079be5fa34fe88be4f57e4437172ffab.tar.gz opt-b837243d079be5fa34fe88be4f57e4437172ffab.tar.xz |
iputils: enabled lto and pie and syntax
Diffstat (limited to 'iputils')
-rw-r--r-- | iputils/.signature | 4 | ||||
-rw-r--r-- | iputils/Pkgfile | 10 |
2 files changed, 7 insertions, 7 deletions
diff --git a/iputils/.signature b/iputils/.signature index f072ee62b..ffee95d39 100644 --- a/iputils/.signature +++ b/iputils/.signature @@ -1,5 +1,5 @@ untrusted comment: verify with /etc/ports/opt.pub -RWSE3ohX2g5d/R91N9FoG3bVC5InoV/FKkmWsGyQRjP/GFRkbfzEu23bH/dbUiRmBnmZfJi9wExoS6QMRAC6HP/f8+QypyZU1A4= -SHA256 (Pkgfile) = 476b629a98fac91a6adec99a2247ea5635779fb55aa2dd58289025a94e8a0f59 +RWSE3ohX2g5d/cCrArCQ/3sl9BPbGryJKOynUrmJ71YerTuDGK++Hms7v8Ppwn4uZYnySgvL8eSnkSu47H5dTtXfH4a0TUtxTgY= +SHA256 (Pkgfile) = d67b3ee9da74475244fa1769aca2c2622e333dd349b3fb99813d02571a16cc60 SHA256 (.footprint) = de8587e29daaf6976b9d2a66b5818259af5e47b8605d6da4d5bd8a5ad2b0237e SHA256 (iputils-20211215.tar.gz) = b6f67fc705490673ff4471d006221b4a2f1b1180b929d9fefd771352621ccedf diff --git a/iputils/Pkgfile b/iputils/Pkgfile index 4a29d068f..3fd7a84ea 100644 --- a/iputils/Pkgfile +++ b/iputils/Pkgfile @@ -1,7 +1,7 @@ # Description: Basic networking utilities # URL: https://github.com/iputils/iputils # Maintainer: CRUX System Team, core-ports at crux dot nu -# Depends on: libcap openssl meson ninja +# Depends on: libcap meson ninja openssl name=iputils version=20211215 @@ -10,16 +10,16 @@ source=(https://github.com/iputils/iputils/archive/$version/$name-$version.tar.g #$name-man-$version.tar.xz) build() { - cd $name-$version - - meson setup build . \ + meson setup build $name-$version \ --prefix=/usr \ --buildtype=plain \ --wrap-mode nodownload \ -D b_lto=true \ -D b_pie=true \ -D BUILD_RARPD=true \ - -D BUILD_MANS=false + -D BUILD_MANS=false \ + -D BUILD_MANS=false \ + -D BUILD_RARPD=true meson compile -C build -j ${JOBS:-1} |