blob: 699b3f3a6795111e2614d8e5b9d123d679516b6e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
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
|