# rpmbuild-terraform **Repository Path**: mirrors_devzero2000/rpmbuild-terraform ## Basic Information - **Project Name**: rpmbuild-terraform - **Description**: rpm of hashicorp terraform - **Primary Language**: Unknown - **License**: MPL-2.0 - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2020-09-24 - **Last Updated**: 2026-05-23 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # rpmbuild-terraform Create a terraform RPM for RHEL/CentOS. ## Requirements To download package sources and install build dependencies sudo yum -y install mock rpmdevtools sudo usermod -a -G mock $(whoami) ## Build process To build the package follow the steps outlined below source /etc/os-release tmp=$(mktemp -d) git clone https://github.com/devzero2000/rpmbuild-terraform.git ${tmp} mkdir -p ${tmp}/{SOURCES,SRPMS} spectool -g -C ${tmp}/SOURCES ${tmp}/SPECS/*.spec mock --clean \ --root epel-${VERSION_ID}-$(uname -i) mock --buildsrpm \ --cleanup-after \ --resultdir ${tmp}/SRPMS \ --root epel-${VERSION_ID}-$(uname -i) \ --sources ${tmp}/SOURCES \ --spec ${tmp}/SPECS/*.spec mock --rebuild \ --root epel-${VERSION_ID}-$(uname -i) \ ${tmp}/SRPMS/*.src.rpm rm -rf ${tmp} ## License Copyright (C) 2019 Elia Pinto This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with this program. If not, see .