From 938cb1f54f0174a5994345e4dc49888c614db430 Mon Sep 17 00:00:00 2001 From: Cem Keylan Date: Tue, 10 Dec 2019 17:44:09 +0300 Subject: move shells to extra --- extra/zsh/build | 26 ++++++++++++++++++++++++++ 1 file changed, 26 insertions(+) create mode 100755 extra/zsh/build (limited to 'extra/zsh/build') diff --git a/extra/zsh/build b/extra/zsh/build new file mode 100755 index 00000000..100849d8 --- /dev/null +++ b/extra/zsh/build @@ -0,0 +1,26 @@ +#!/bin/sh -e + +{ + printf "functions='Completion/*comp* " + for comp in Base Linux Unix X Zsh; do + printf "Completion/%s/*/* " "$comp" + done + printf "'\\n" +} >> Src/Zle/complete.mdd + +rm -f Completion/Linux/Command/_pkgtool +rm -f Completion/Linux/Command/_rpmbuild + +./configure \ + --prefix=/usr \ + --enable-function-subdirs \ + --enable-fndir=/usr/share/zsh/functions \ + --enable-runhelpdir=/usr/share/zsh/help \ + --enable-scriptdir=/usr/share/zsh/scripts \ + --enable-additional-fpath=/usr/share/zsh/vendor-completions \ + --disable-gdbm + +make +make DESTDIR="$1" install + +install -Dm 644 zprofile "$1/etc/zprofile" -- cgit v1.2.3