aboutsummaryrefslogtreecommitdiff
path: root/extra/yash/build
diff options
context:
space:
mode:
authorCem Keylan <cem@ckyln.com>2020-05-09 15:42:36 +0300
committerCem Keylan <cem@ckyln.com>2020-05-09 15:42:36 +0300
commit568eeb806c0547fb0b0b2c3508aa336cc3fc7b46 (patch)
tree26c8013a25eb41fa2d8e77b7046bfbd0623e3deb /extra/yash/build
parentd0a7a0add9b32d9d89e02d6d93e37994205b83ec (diff)
downloadrepository-568eeb806c0547fb0b0b2c3508aa336cc3fc7b46.tar.gz
yash: add new package at 2.49
Diffstat (limited to 'extra/yash/build')
-rwxr-xr-xextra/yash/build15
1 files changed, 15 insertions, 0 deletions
diff --git a/extra/yash/build b/extra/yash/build
new file mode 100755
index 00000000..68d47759
--- /dev/null
+++ b/extra/yash/build
@@ -0,0 +1,15 @@
+#!/bin/sh -e
+
+./configure \
+ --prefix=/usr \
+ --enable-help \
+ --enable-history \
+ --disable-nls \
+ --enable-printf \
+ --enable-socket \
+ --enable-lineedit
+
+make
+make DESTDIR="$1" install
+
+ln -sf yash "$1/usr/bin/sh"