summaryrefslogtreecommitdiffstats
path: root/base/all/root/scripts/tasks/install_build.sh
blob: 73bf651f966700304ca167fcac4f1bfae237e5e2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
#!/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

# 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

exit 0