Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Adding automake RPM package #18

Merged
merged 2 commits into from
Nov 1, 2016
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 9 additions & 2 deletions swiftbuild-centos7.sh
Original file line number Diff line number Diff line change
Expand Up @@ -71,6 +71,9 @@ case "$1" in
wget https://dl.fedoraproject.org/pub/fedora/linux/releases/24/Everything/x86_64/os/Packages/l/llvm-devel-3.8.0-1.fc24.x86_64.rpm
wget https://dl.fedoraproject.org/pub/fedora/linux/releases/24/Everything/x86_64/os/Packages/l/llvm-libs-3.8.0-1.fc24.x86_64.rpm
wget https://dl.fedoraproject.org/pub/fedora/linux/releases/24/Everything/x86_64/os/Packages/m/mpfr-3.1.4-1.fc24.x86_64.rpm
wget https://dl.fedoraproject.org/pub/fedora/linux/releases/24/Everything/x86_64/os/Packages/l/libtool-2.4.6-11.fc24.x86_64.rpm
wget https://copr-be.cloud.fedoraproject.org/results/lebauce/Darling/fedora-22-x86_64/libkqueue-2.0.1-1/libkqueue-2.0.1-1.x86_64.rpm
wget https://copr-be.cloud.fedoraproject.org/results/lebauce/Darling/fedora-22-x86_64/libkqueue-2.0.1-1/libkqueue-devel-2.0.1-1.x86_64.rpm

#install binutils
sudo yum install -y binutils-2.26-18.fc24.x86_64.rpm
Expand All @@ -97,7 +100,10 @@ case "$1" in
llvm-3.8.0-1.fc24.x86_64.rpm \
llvm-devel-3.8.0-1.fc24.x86_64.rpm \
llvm-libs-3.8.0-1.fc24.x86_64.rpm \
mpfr-3.1.4-1.fc24.x86_64.rpm
mpfr-3.1.4-1.fc24.x86_64.rpm \
libtool-2.4.6-11.fc24.x86_64.rpm \
libkqueue-2.0.1-1.x86_64.rpm
libkqueue-devel-2.0.1-1.x86_64.rpm

#install other required packages
sudo yum install -y \
Expand All @@ -120,7 +126,8 @@ case "$1" in
ncurses-devel \
python-devel \
pkgconfig \
autoconf
autoconf \
automake

#substitute cmake3 for cmake
sudo mv /usr/bin/cmake /usr/bin/cmake2
Expand Down