void-packages/srcpkgs/zsh/template

47 lines
1.6 KiB
Bash
Raw Normal View History

2011-07-30 14:57:17 +00:00
# Template file for 'zsh'
pkgname=zsh
2014-10-09 05:04:10 +00:00
version=5.0.7
revision=3
build_style=gnu-configure
2014-01-06 11:27:21 +00:00
make_build_target="all info"
2012-11-18 10:07:27 +00:00
make_install_args="install.info"
2012-06-04 12:28:07 +00:00
configure_args="--enable-etcdir=/etc/zsh --enable-zshenv=/etc/zsh/zshenv
2012-12-22 03:20:05 +00:00
--enable-zlogin=/etc/zsh/zlogin --enable-zlogout=/etc/zsh/zlogout
--enable-zprofile=/etc/profile --enable-zshrc=/etc/zsh/zshrc
--enable-maildir-support --enable-function-subdirs
--enable-fndir=/usr/share/zsh/functions --with-term-lib=ncursesw
--enable-scriptdir=/usr/share/zsh/scripts --enable-pcre
--enable-multibyte --enable-cap --with-tcsetpgrp
zsh_cv_shared_environ=yes
zsh_cv_func_dlsym_needs_underscore=no
zsh_cv_sys_dynamic_execsyms=yes"
2014-10-09 05:04:10 +00:00
hostmakedepends="pcre-devel"
makedepends="gdbm-devel pcre-devel libcap-devel ncurses-devel"
register_shell="/bin/zsh"
2012-12-22 03:20:05 +00:00
short_desc="The Z SHell"
2011-07-30 14:57:17 +00:00
maintainer="Juan RP <xtraeme@gmail.com>"
homepage="http://www.zsh.org"
license="zsh"
2012-06-04 12:28:07 +00:00
distfiles="http://www.zsh.org/pub/zsh-$version.tar.bz2"
2014-10-09 05:04:10 +00:00
checksum=544e27de81740286b916d1d77c9f48ad7c26ad7943ed96d278abee67cf6704b3
2011-07-30 14:57:17 +00:00
2015-03-08 12:11:41 +00:00
build_pie=yes
2014-03-15 09:02:10 +00:00
lib32disabled=yes
2012-07-25 05:54:02 +00:00
pre_configure() {
# Set correct keymap path
sed -i 's#/usr/share/keymaps#/usr/share/kbd/keymaps#g' \
Completion/Unix/Command/_loadkeys
# Remove unneeded and conflicting completion scripts
2013-12-15 11:17:19 +00:00
for _fpath in AIX BSD Cygwin Darwin Debian Mandriva openSUSE Redhat Solaris; do
rm -rf Completion/$_fpath
sed "s#\s*Completion/$_fpath/\*/\*##g" -i Src/Zle/complete.mdd
done
2012-07-25 05:54:02 +00:00
rm -f Completion/Linux/Command/_{pkgtool,rpmbuild,yast}
rm -f Completion/Unix/Command/_{notmuch,osc,systemd}
2012-07-25 05:54:02 +00:00
}
2011-12-10 09:06:15 +00:00
post_install() {
2014-08-29 10:27:29 +00:00
vlicense LICENCE
2011-07-30 14:57:17 +00:00
}