summaryrefslogtreecommitdiffstats
path: root/base/all/root/scripts/tasks/install_build.sh
blob: cc67d58b79e1f8f9a0c3e6b6a3bdf6eb486b7ba3 (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 quota-devel \
    perl-Parse-Yapp perl-ExtUtils-MakeMaker

exit 0