29 lines
382 B
Bash
29 lines
382 B
Bash
# -*- sh -*-
|
|
## Bootstrap for Fedora 19+
|
|
|
|
STEPS="selinux rpm_packages virtualenv"
|
|
SHORTNAME=Fedora
|
|
MIN_RELEASE=19
|
|
|
|
## Bootstrap for Fedora based distros
|
|
REQUIRES='
|
|
gcc
|
|
|
|
make
|
|
git
|
|
patch
|
|
python
|
|
python-devel
|
|
libffi-devel
|
|
openssl-devel
|
|
|
|
createrepo
|
|
yum-utils
|
|
|
|
rpm-build
|
|
python-pip
|
|
python-virtualenv
|
|
python-argparse
|
|
python-six
|
|
'
|