Private
Public Access
1
0
Files
linux_patch_api/build-rpm.sh

63 lines
1.9 KiB
Bash
Executable File

#!/bin/bash
# Build RPM Package for RHEL/CentOS/Fedora
# Run on: RHEL 8/9, CentOS 8/9, Fedora 38+
set -e
echo "=== Linux Patch API - RPM Build Script ==="
echo ""
# Check if running on RPM-based system
if ! command -v rpmbuild &> /dev/null; then
echo "Installing RPM build tools..."
if command -v dnf &> /dev/null; then
sudo dnf install -y rpm-build cargo rust gcc systemd-devel
elif command -v yum &> /dev/null; then
sudo yum install -y rpm-build cargo rust gcc systemd-devel
else
echo "Error: Cannot install rpm-build. Please install manually."
exit 1
fi
fi
# Setup RPM build directory structure
mkdir -p ~/rpmbuild/{BUILD,BUILDROOT,RPMS,SOURCES,SPECS,SRPMS}
# Create source tarball (required by %autosetup in spec file)
echo "Creating source tarball..."
VERSION="1.0.0"
TMPDIR=$(mktemp -d)
mkdir -p "$TMPDIR/linux-patch-api-${VERSION}"
# Copy files excluding unwanted directories using find
cp -r . "$TMPDIR/linux-patch-api-${VERSION}/"
rm -rf "$TMPDIR/linux-patch-api-${VERSION}/target"
rm -rf "$TMPDIR/linux-patch-api-${VERSION}/.git"
rm -rf "$TMPDIR/linux-patch-api-${VERSION}/releases"
rm -rf "$TMPDIR/linux-patch-api-${VERSION}/.github"
rm -rf "$TMPDIR/linux-patch-api-${VERSION}/debian"
tar -czf ~/rpmbuild/SOURCES/linux-patch-api-${VERSION}.tar.gz -C "$TMPDIR" "linux-patch-api-${VERSION}"
rm -rf "$TMPDIR"
# Copy spec file
echo "Preparing spec file..."
cp linux-patch-api.spec ~/rpmbuild/SPECS/
# Build RPM
echo "Building RPM package..."
rpmbuild -ba ~/rpmbuild/SPECS/linux-patch-api.spec
# Copy to releases directory
echo ""
echo "Copying package to releases/..."
mkdir -p releases
cp ~/rpmbuild/RPMS/x86_64/*.rpm releases/
echo ""
echo "=== Build Complete ==="
echo "Package: releases/linux-patch-api-*.rpm"
echo ""
echo "Install with:"
echo " sudo dnf install -y ./releases/linux-patch-api-*.rpm"
echo " # or"
echo " sudo yum install -y ./releases/linux-patch-api-*.rpm"