Newer
Older
bison
flex
g++
nasm
sharutils
gcc-multilib
g++-multilib
autoconf
# if realpath not already on system, add it to BASE_PKGS
which realpath >/dev/null 2>&1
if [ ! $? -eq 0 ]; then
BASE_PKGS="$BASE_PKGS realpath"
fi
#
# base (ld):
# openjdk-6-jre
# apt-libxqilla-dev
# yum-libxqilla-devel
# apt-libxerces-c-dev
# yum-libxerces-c-devel
# apt-libxml2-dev
# yum-libxml2-devel
#
# For clients of IRDB
CLIENT_IRDB_PKGS="
postgresql-client
yum-postgresql-server
yum-postgresql-contrib
scons
"
# old client_irdb_pkgs
# pgadmin3
# automake1.9
#
ALL_PKGS="$BASE_PKGS $CLIENT_IRDB_PKGS $SERVER_IRDB_PKGS "
install_packs()
{
which yum 1> /dev/null 2> /dev/null
if [[ $? == 0 ]]; then
echo "Installing build tools"
sudo yum -y groupinstall 'Development Tools'
for i in $*
do
which apt-get 1> /dev/null 2> /dev/null
if [[ $? == 0 ]]; then
echo "Will install of $i for platform $(lsb_release -d -s)"
elif [[ $i =~ yum-* ]]; then
echo "Skipping install of $i for platform $(lsb_release -d -s)"
else
echo "Will install of $i for platform $(lsb_release -d -s)"
if [[ $i =~ apt-* ]]; then
echo "Skipping install of $i for platform $(cat /etc/redhat-release)"
elif [[ $i =~ yum-* ]]; then
echo "Skipping install of $i for platform $(cat /etc/redhat-release)"
yummers="$yummers $(echo $i|sed "s/^yum-//")"
echo "Skipping install of $i for platform $(cat /etc/redhat-release)"
done
which apt-get 1> /dev/null 2> /dev/null
if [[ $? == 0 ]]; then
(set -x ; sudo apt-get install -y --ignore-missing $apters)
(set -x ; sudo yum install -y --skip-broken $yummers)
}

Jason Hiser
committed
main()
{
local args="$@"
if [[ $args = "" ]]; then
args="all"
fi

Jason Hiser
committed
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
which apt-get 1> /dev/null 2> /dev/null
if [[ $? != 0 ]]; then
#setup extra repositories on centos
sudo yum install epel-release -y
fi
for arg in $args; do
case $arg in
all)
install_packs $ALL_PKGS
;;
build)
install_packs $BASE_PKGS $CLIENT_IRDB_PKGS
;;
test)
install_packs $ALL_PKGS
;;
deploy)
install_packs $CLIENT_IRDB_PKGS $SERVER_IRDB_PKGS
;;
base)
install_packs $BASE_PKGS
;;
client-irdb)
install_packs $CLIENT_IRDB_PKGS
;;
server-irdb)
install_packs $SERVER_IRDB_PKGS
;;
irdb)
install_packs $CLIENT_IRDB_PKGS $SERVER_IRDB_PKGS
;;
*)
echo "$arg not recognized. Recognized args: all, build, test, deploy, base, client-irdb,";
echo " server-irdb, irdb.";
esac
done
orig_dir=$(pwd)
if [ ! -z $DAFFY_HOME ]; then
cd daffy
sudo ./get-packages.sh
cd $orig_dir
fi
}
main "$@"

Jason Hiser
committed
echo Installing peasoup packages complete.