diff options
author | Cem Keylan <cem@ckyln.com> | 2021-04-13 09:16:12 +0300 |
---|---|---|
committer | Cem Keylan <cem@ckyln.com> | 2021-04-13 09:16:49 +0300 |
commit | 9f2a1ee2ee07841719e2d52d2866c15a2ba6d20b (patch) | |
tree | d46fa522777ccd9524b88232bba5278d9bfd163b /extra/yash/build | |
parent | 756367571f2bffa2dbcc9a8633fab41537ee7654 (diff) | |
download | repository-9f2a1ee2ee07841719e2d52d2866c15a2ba6d20b.tar.gz |
yash: add new package at 2.51
Diffstat (limited to 'extra/yash/build')
-rwxr-xr-x | extra/yash/build | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/extra/yash/build b/extra/yash/build new file mode 100755 index 00000000..b70f863b --- /dev/null +++ b/extra/yash/build @@ -0,0 +1,15 @@ +#!/bin/sh -e + +export LDFLAGS="$LDFLAGS -static" + +./configure \ + --prefix=/usr \ + --enable-help \ + --enable-history \ + --disable-nls \ + --disable-printf \ + --enable-socket \ + --enable-lineedit + +make +make DESTDIR="$1" install |