summaryrefslogtreecommitdiff
path: root/manualPorts
diff options
context:
space:
mode:
authorErich Eckner <git@eckner.net>2023-01-15 14:02:34 +0100
committerErich Eckner <git@eckner.net>2023-01-15 14:02:34 +0100
commit1096f2625e79cba1f97f1bb448514ed912051ec8 (patch)
treec7ba1402711a78029ccda0dc4ed04efaf45c5c36 /manualPorts
parentafd6bd3aef25b33ea4dcdcc80bae4ca8eb1e9d77 (diff)
downloadcrux-ports-1096f2625e79cba1f97f1bb448514ed912051ec8.tar.xz
pax-utils: fix install dirs
Diffstat (limited to 'manualPorts')
-rw-r--r--manualPorts/pax-utils/.footprint29
-rw-r--r--manualPorts/pax-utils/.signature6
-rw-r--r--manualPorts/pax-utils/Pkgfile10
3 files changed, 26 insertions, 19 deletions
diff --git a/manualPorts/pax-utils/.footprint b/manualPorts/pax-utils/.footprint
index c4ccc1c..a7e7dbc 100644
--- a/manualPorts/pax-utils/.footprint
+++ b/manualPorts/pax-utils/.footprint
@@ -1,16 +1,15 @@
drwxr-xr-x root/root usr/
-drwxr-xr-x root/root usr/local/
-drwxr-xr-x root/root usr/local/bin/
--rwxr-xr-x root/root usr/local/bin/dumpelf
--rwxr-xr-x root/root usr/local/bin/lddtree
--rwxr-xr-x root/root usr/local/bin/pspax
--rwxr-xr-x root/root usr/local/bin/scanelf
--rwxr-xr-x root/root usr/local/bin/scanmacho
--rwxr-xr-x root/root usr/local/bin/symtree
-drwxr-xr-x root/root usr/local/share/
-drwxr-xr-x root/root usr/local/share/man/
-drwxr-xr-x root/root usr/local/share/man/man1/
--rw-r--r-- root/root usr/local/share/man/man1/dumpelf.1.gz
--rw-r--r-- root/root usr/local/share/man/man1/pspax.1.gz
--rw-r--r-- root/root usr/local/share/man/man1/scanelf.1.gz
--rw-r--r-- root/root usr/local/share/man/man1/scanmacho.1.gz
+drwxr-xr-x root/root usr/bin/
+-rwxr-xr-x root/root usr/bin/dumpelf
+-rwxr-xr-x root/root usr/bin/lddtree
+-rwxr-xr-x root/root usr/bin/pspax
+-rwxr-xr-x root/root usr/bin/scanelf
+-rwxr-xr-x root/root usr/bin/scanmacho
+-rwxr-xr-x root/root usr/bin/symtree
+drwxr-xr-x root/root usr/share/
+drwxr-xr-x root/root usr/share/man/
+drwxr-xr-x root/root usr/share/man/man1/
+-rw-r--r-- root/root usr/share/man/man1/dumpelf.1.gz
+-rw-r--r-- root/root usr/share/man/man1/pspax.1.gz
+-rw-r--r-- root/root usr/share/man/man1/scanelf.1.gz
+-rw-r--r-- root/root usr/share/man/man1/scanmacho.1.gz
diff --git a/manualPorts/pax-utils/.signature b/manualPorts/pax-utils/.signature
index 8c5a41d..ff7e169 100644
--- a/manualPorts/pax-utils/.signature
+++ b/manualPorts/pax-utils/.signature
@@ -1,5 +1,5 @@
untrusted comment: verify with /etc/ports/deepthought.pub
-RWQxCptPusLGGnsqqqGRQDTqb3zweyYmQQ/PAyo7khmjcpltAwRzje1LMJL2TC6LPjRC4M87v9XJEdzXKW/WVnmpTVvnPXjfsws=
-SHA256 (Pkgfile) = e2f0e280aa51692e63c4e40ca681e3dc800b2dbf14bf9f18c4cdcafe7fffcc16
-SHA256 (.footprint) = 6344a1cb78582866a57313de44687b0e703412d34c1db18c215c73f0024ec7f1
+RWQxCptPusLGGsK0tKb3/jDxXjR9zXDyHKzyAEkX5qeezW65qE90b/N7oUwkZ4zARmZ2lnQmRxNErkZB9CH+UhpsBCqBAMXaywQ=
+SHA256 (Pkgfile) = b53b3e98cfd74784bf69c6456db8928cb30eaf99a4dc437cc831981a3349ccaa
+SHA256 (.footprint) = 873c20c786de4cfc11127693f3453778753ea06df4f9252c1ef7f03a9eeab002
SHA256 (v1.3.6.tar.gz) = 082375d573db0c91683683678785a3ddfd07dc53f11c25b46215ca1dd02c3bde
diff --git a/manualPorts/pax-utils/Pkgfile b/manualPorts/pax-utils/Pkgfile
index 0c4f52c..91e3f0c 100644
--- a/manualPorts/pax-utils/Pkgfile
+++ b/manualPorts/pax-utils/Pkgfile
@@ -12,7 +12,15 @@ build() {
sed -E 's|( paths =) \[\]|\1 ["/usr/lib"]|g' -i $name-$version/lddtree.py
- meson $name-$version build -Duse_seccomp=true
+ meson setup \
+ --prefix /usr \
+ --libexecdir lib \
+ --buildtype plain \
+ --auto-features enabled \
+ --wrap-mode nodownload \
+ -D b_lto=true \
+ -D b_pie=true \
+ $name-$version build -Duse_seccomp=true
meson compile -C build
meson install -C build --destdir "$PKG"