summaryrefslogtreecommitdiff
path: root/devel/patchelf
diff options
context:
space:
mode:
authorrawnix ports <ports@rawnix.org>2026-09-26 18:19:05 +0000
committerrawnix ports <ports@rawnix.org>2026-09-26 18:19:05 +0000
commitc82e88dd00d1b0b7fcfb4e5628d99611388cef6f (patch)
tree56d864b5a5c6c145edd96178ae219a8f90e191a6 /devel/patchelf
downloadports-c82e88dd00d1b0b7fcfb4e5628d99611388cef6f.tar.gz
sync 2026-09-26 18:19 UTC
1672 files changed, 151396 insertions(+)
Diffstat (limited to 'devel/patchelf')
-rw-r--r--devel/patchelf/.footprint7
-rw-r--r--devel/patchelf/.signature6
-rw-r--r--devel/patchelf/MAKEPKG32
3 files changed, 45 insertions, 0 deletions
diff --git a/devel/patchelf/.footprint b/devel/patchelf/.footprint
new file mode 100644
index 0000000..8a6d8e2
--- /dev/null
+++ b/devel/patchelf/.footprint
@@ -0,0 +1,7 @@
+drwxr-xr-x root/root usr/
+drwxr-xr-x root/root usr/bin/
+-rwxr-xr-x root/root usr/bin/patchelf
+drwxr-xr-x root/root usr/share/
+drwxr-xr-x root/root usr/share/zsh/
+drwxr-xr-x root/root usr/share/zsh/site-functions/
+-rw-r--r-- root/root usr/share/zsh/site-functions/_patchelf
diff --git a/devel/patchelf/.signature b/devel/patchelf/.signature
new file mode 100644
index 0000000..ad6432c
--- /dev/null
+++ b/devel/patchelf/.signature
@@ -0,0 +1,6 @@
+RWTZ9IduCSQ/mD1mk6pnRThkZCdjCoJAQHGhANvD3jLLCZvKi8lacgM1J/b7mORWJ2z3FVZc2jIsNLyzBIObL6fnrgln3HHIqQw=
+
+SHA256 (MAKEPKG) = 341a292810430d27e4727e664c89cda1aa15e57a3b06181c9262f3531c79bd2c
+SHA256 (.footprint) = 0e32d885865a555e58d9e8c55696513c5319ff752862717a264481f2f06458be
+SHA256 (patchelf-0.19.1.tar.gz) = 491108728f120ce05b539934b41a750235031a6df8abc6b47e57aff7de15094d
+SHA256 (patchelf#0.19.1-1.pkg.tar.gz) = cab94c3d2282df0df56061edaa5564e2aa250ecf75c0fecae3f98031640b883d
diff --git a/devel/patchelf/MAKEPKG b/devel/patchelf/MAKEPKG
new file mode 100644
index 0000000..699b3f3
--- /dev/null
+++ b/devel/patchelf/MAKEPKG
@@ -0,0 +1,32 @@
+#!/bin/mkpkg
+# description: Utility to modify ELF executables and libraries
+# url: https://github.com/NixOS/patchelf
+
+name=patchelf
+version=0.19.1
+release=1
+depends=()
+source=(https://github.com/NixOS/patchelf/releases/download/$version/$name-$version.tar.gz)
+sha256sums=(
+ "491108728f120ce05b539934b41a750235031a6df8abc6b47e57aff7de15094d"
+)
+
+build() {
+ cd $name-$version
+
+ ./configure \
+ --prefix=/usr
+
+ make
+ make DESTDIR=$PKG install
+
+ rm -rf $PKG/usr/share/doc
+ rm -rf $PKG/usr/share/man
+}
+
+signify() {
+ untrusted comment: public key
+ RWTZ9IduCSQ/mL8337TEUinPwT92xFEUpD92hkS7IxcOnzTt9QdpohT3
+}
+
+# vim: filetype=sh