Artifact ad6ad0c176641c5fafe4df8165bcb50ee13ad89f:
- Executable file tests/installall/tests/iupsrclib/download.sh — part of check-in [749b68c55a] at 2013-07-22 18:35:38 on branch dev — Lots of stuff for installall flow (user: matt, size: 386) [annotate] [blame] [check-ins using] [more...]
#!/usr/bin/env bash # Run your step here source $PREFIX/buildsetup.sh mkdir -p $PREFIX/iuplib for a in cd-5.6.1_Sources.tar.gz im-3.8.1_Sources.tar.gz iup-3.8_Sources.tar.gz lua-5.2.1_Sources.tar.gz; do if ! [[ -e ${DOWNLOADS}/$a ]] ; then (cd ${DOWNLOADS};wget http://www.kiatoa.com/matt/iup/$a) fi tar xfvz ${DOWNLOADS}/$a done find . -type d -exec chmod ug+x {} \;