diff options
author | Cem Keylan <cem@ckyln.com> | 2023-02-03 17:07:12 +0100 |
---|---|---|
committer | Cem Keylan <cem@ckyln.com> | 2023-02-03 17:07:12 +0100 |
commit | 263ba4167839cdb6665d65c514fc04d14b69920a (patch) | |
tree | 673fe7b2b474ba4d20e56c898c69a4323f335ac8 /extra/bind/build | |
parent | 47997ed3d660a2e73664bd001c14c509790da30a (diff) | |
download | repository-263ba4167839cdb6665d65c514fc04d14b69920a.tar.gz |
bind: add new package at 9.18.4
Diffstat (limited to 'extra/bind/build')
-rwxr-xr-x | extra/bind/build | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/extra/bind/build b/extra/bind/build new file mode 100755 index 00000000..0f0a0f88 --- /dev/null +++ b/extra/bind/build @@ -0,0 +1,14 @@ +#!/bin/sh -e + +# Remove libtool dependency. +clsed 's/as_fn_error.*libtool/: "/g' configure + +./configure \ + --prefix=/usr \ + --sbindir=/usr/bin + +make +make DESTDIR="$1" install + +# Why are tests installed to $DESTDIR's /tmp ? +rm -rf "$1/tmp" |