24 lines
476 B
Bash
24 lines
476 B
Bash
|
source $stdenv/setup
|
||
|
|
||
|
ensureDir $out
|
||
|
|
||
|
#cabextract $src
|
||
|
|
||
|
#mkdir tmp
|
||
|
#cd tmp
|
||
|
#cabextract ../vcsetup1.cab
|
||
|
#rm ../vc* # reduce temporary disk usage a bit
|
||
|
|
||
|
#while read target; do
|
||
|
# read source
|
||
|
# echo "$source -> $target"
|
||
|
# ensureDir $out/$(dirname $target)
|
||
|
# cp "$source" $out/"$target"
|
||
|
#done < $filemap
|
||
|
|
||
|
cat > $out/setup <<EOF
|
||
|
export PATH="$out/bin:\$PATH"
|
||
|
export LIB="$(cygpath -w -p "$out/lib");\$LIB"
|
||
|
export INCLUDE="$(cygpath -w -p "$out/include");\$INCLUDE"
|
||
|
EOF
|