Changeset 329
- Timestamp:
- 06/18/08 07:23:15 (3 months ago)
- Files:
-
- 1 modified
-
trunk/data/ncurses/make.sh (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/data/ncurses/make.sh
r289 r329 1 shopt -s extglob 1 2 pkg:setup 2 3 cd .. … … 4 5 mkdir bld-ncurses{,w} 5 6 cd bld-ncurses 6 PKG_CONF=../${dir}/configure pkg:configure --with-shared --without-normal --without-debug --enable-sigwinch 7 flags='--with-shared --without-normal --without-debug --enable-sigwinch' 8 PKG_CONF=../${dir}/configure pkg:configure ${flags} 7 9 make 8 10 pkg:install 9 11 cd ../bld-ncursesw 10 PKG_CONF=../${dir}/configure pkg:configure --with-shared --without-normal --without-debug --enable-sigwinch--disable-overwrite --enable-widec12 PKG_CONF=../${dir}/configure pkg:configure ${flags} --disable-overwrite --enable-widec 11 13 make 12 14 pkg:install 15 16 for ti in "${PKG_DEST}"/usr/share/terminfo/*/*; do 17 if [[ ${ti} == */@(?(pc)ansi|cons25|cygwin|dumb|linux|mach|rxvt|screen|sun|vt@(52|100|102|220)|swvt25?(m)|[Ex]term)?(-*) ]]; then 18 echo "keeping terminfo: ${ti}" 19 else 20 rm -f "${ti}" 21 fi 22 done 23 24 rmdir --ignore-fail-on-non-empty "${PKG_DEST}"/usr/share/terminfo/*
