rpmbuild spec文件详解
spec文件实例
%define PackTime 20241025
Name: QRpmTest
Version: 1.0.0
Release: 1_%{
PackTime}%{
?dist}%{
?extra_release}
Summary: Rpm test client
Group: Applications/System
License: LGPLv2+
URL: http://www.kurtlee.com/
Vendor: KurtLee Co,Ltd
Source: %{
name}-%{
version}.tar.gz
BuildRequires: make
BuildRequires: qmake
Autoreq: 0
%description
Description: Rpm test client
%prep
%setup -q
%build
qmake QRpmTest.pro
make -j8
cd %{
_topdir}/BUILD/%{
name}-%{
version}
linuxdeployqt %_builddir/%{
name}-%{
version}/bin/QRpmTest -bundle-non-qt-libs
cd -
%install
rm -rf %{
buildroot}/%{
name}-%{
version}*
mkdir -p %{
buildroot}/opt/QRpmTest/bin
mkdir -p %{
buildroot}/opt/QRpmTest/bin/{
lib,plugins,translations}