Template to bootstrap configure/automake projects for C++, libtool, Qt, NodeJS, PHP, Shell-Scripts, etc.
Extends autotools, by building packages for Debian and RPM, specifying generic library dependencies, creating desktop applications with icons, etc.
https://mrw.sh/development/bootstrap-build-environment
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
63 lines
1.1 KiB
63 lines
1.1 KiB
Summary: @DESCRIPTION@ |
|
Name: @PACKAGE_NAME@ |
|
Version: @VERSION@ |
|
Release: @BUILD_NUMBER@.@DISTRO@ |
|
License: LGPL |
|
Group: @RPM_GROUP@ |
|
|
|
Source0: %{name}-%{version}.tar.gz |
|
BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root |
|
BuildRequires: which, pkgconfig, gnupg, expect, git, make, automake, autoconf, rpm-build, doxygen, graphviz, java-openjdk @RPM_BUILD_DEPEND@ @RPM_DEPEND_IFEXISTS@ |
|
|
|
#### os dependent definitions #### |
|
%if 0%{?suse_version} || 0%{?sles_version} |
|
BuildRequires: lsb-release |
|
%else |
|
%if 0%{?mageia} |
|
BuildRequires: rpm-sign, lsb-release |
|
|
|
%else |
|
|
|
BuildRequires: rpm-sign, redhat-lsb |
|
%global debug_package %{nil} |
|
%endif |
|
%endif |
|
%if ! 0%{?centos} |
|
BuildRequires: mscgen |
|
%if ! 0%{?mageia} |
|
BuildRequires: pandoc |
|
%endif |
|
%endif |
|
|
|
%description |
|
@README@ |
|
|
|
|
|
%global debug_package %{nil} |
|
%prep |
|
%setup -q |
|
./configure --prefix=/usr \ |
|
--sysconfdir=/etc \ |
|
--docdir=/usr/share/doc/packages/@PACKAGE_NAME@ \ |
|
--libdir=/usr/%_lib |
|
|
|
%build |
|
make |
|
|
|
%install |
|
DESTDIR=$RPM_BUILD_ROOT make install |
|
|
|
%clean |
|
rm -rf $RPM_BUILD_ROOT |
|
|
|
%files |
|
%defattr(-,root,root,-) |
|
/usr/share/@PACKAGE_NAME@ |
|
|
|
%doc |
|
/usr/share/doc |
|
|
|
|
|
|
|
%changelog |
|
|
|
|