75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
|
cd chicken-${CHICKEN_VERSION}
make PLATFORM=linux PREFIX=$PREFIX
make PLATFORM=linux PREFIX=$PREFIX install
cd $BUILDHOME
fi
# Some eggs are quoted since they are reserved to Bash
for f in readline apropos base64 regex-literals format "regex-case" "test" coops trace csv dot-locking posix-utils posix-extras directory-utils hostinfo tcp rpc csv-xml fmt ; do
if ! [[ -e $PREFIX/lib/chicken/6/$f.so ]];then
chicken-install -deploy -prefix $DEPLOYTARG $PROX $f
else
echo Skipping install of egg $f as it is already installed
fi
done
cd $BUILDHOME
|
|
>
|
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
|
cd chicken-${CHICKEN_VERSION}
make PLATFORM=linux PREFIX=$PREFIX
make PLATFORM=linux PREFIX=$PREFIX install
cd $BUILDHOME
fi
# Some eggs are quoted since they are reserved to Bash
for f in matchable readline apropos base64 regex-literals format "regex-case" "test" coops trace csv dot-locking posix-utils posix-extras directory-utils hostinfo tcp rpc csv-xml fmt ; do
if ! [[ -e $PREFIX/lib/chicken/6/$f.so ]];then
chicken-install $PROX $f
chicken-install -deploy -prefix $DEPLOYTARG $PROX $f
else
echo Skipping install of egg $f as it is already installed
fi
done
cd $BUILDHOME
|