summaryrefslogtreecommitdiffstats
path: root/base/all/root/scripts/tasks/install_build.sh
blob: 5ca825258421c6b9eed178ef1fed25fb1fa604ef (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
#!/bin/sh

# Setup RPM development
echo "Installing RPM developing and setting up rpm build"
yum -y install rpmdevtools

# Install the performance co-pilot packages to allow building of the
# CTDB pmda code.  It is OK if this fails (these packages are only
# available in EPEL) since this script will continue...
echo "Installing PCP development libraries - this may fail"
yum -y install pcp-libs pcp-libs-devel || true

# Packages required for samba development
echo "Installing Samba build dependencies"
yum -y install readline-devel libacl-devel e2fsprogs-devel \
    libxslt docbook-utils docbook-style-xsl dbus-devel \
    libaio-devel libcap-devel popt-devel quota-devel \
    perl-Parse-Yapp perl-ExtUtils-MakeMaker

exit 0