wok rev 17716
tcsh, vim-tiny, vim: add -ltinfo in LDFLAGS
author | Pascal Bellard <pascal.bellard@slitaz.org> |
---|---|
date | Thu Mar 05 09:14:35 2015 +0100 (2015-03-05) |
parents | 23b382a886ad |
children | 1313ac757600 |
files | tcsh/receipt vim-tiny/receipt vim/receipt |
line diff
1.1 --- a/tcsh/receipt Thu Mar 05 08:50:37 2015 +0100 1.2 +++ b/tcsh/receipt Thu Mar 05 09:14:35 2015 +0100 1.3 @@ -12,9 +12,13 @@ 1.4 #The following build dep will be necessary when glibc ups to 2.14. 1.5 #BUILD_DEPENDS="libtirpc" 1.6 1.7 +DEPENDS="ncurses" 1.8 +BUILD_DEPENDS="ncurses-dev" 1.9 + 1.10 # Rules to configure and make the package. 1.11 compile_rules() 1.12 { 1.13 + export LDFLAGS="$LDFLAGS -ltinfo" 1.14 mkdir -p $DESTDIR/usr/bin 1.15 touch $DESTDIR/usr/bin/tcsh 1.16 ./configure $CONFIGURE_ARGS && 1.17 @@ -28,9 +32,6 @@ 1.18 { 1.19 mkdir -p $fs/usr/bin \ 1.20 $fs/usr/share 1.21 - 1.22 cp -a $install/usr/bin/tcsh $fs/usr/bin 1.23 - 1.24 cp -ar $install/usr/share/locale $fs/usr/share 1.25 } 1.26 -
2.1 --- a/vim-tiny/receipt Thu Mar 05 08:50:37 2015 +0100 2.2 +++ b/vim-tiny/receipt Thu Mar 05 09:14:35 2015 +0100 2.3 @@ -14,11 +14,12 @@ 2.4 TAGS="text-editor" 2.5 2.6 DEPENDS="ncurses" 2.7 +BUILD_DEPENDS="ncurses-dev" 2.8 2.9 # Rules to configure and make the package. 2.10 compile_rules() 2.11 { 2.12 - cd $src 2.13 + export LDFLAGS="$LDFLAGS -ltinfo" 2.14 2.15 # define the place for the global vimrc file (set to /etc/vim/vimrc) 2.16 # (patch from Arch Linux PKGBUILD)
3.1 --- a/vim/receipt Thu Mar 05 08:50:37 2015 +0100 3.2 +++ b/vim/receipt Thu Mar 05 09:14:35 2015 +0100 3.3 @@ -13,11 +13,12 @@ 3.4 TAGS="text-editor" 3.5 3.6 DEPENDS="ncurses acl diffutils" 3.7 +BUILD_DEPENDS="ncurses-dev acl-dev diffutils" 3.8 3.9 # Rules to configure and make the package. 3.10 compile_rules() 3.11 { 3.12 - cd $src 3.13 + export LDFLAGS="$LDFLAGS -ltinfo" 3.14 3.15 # define the place for the global vimrc file (set to /etc/vim/vimrc) 3.16 # (patch from Arch Linux PKGBUILD)