package created using the webbuild interface [release 0.4.0-1mamba;Sat Jan 13 2018]

This commit is contained in:
Silvan Calarco 2024-01-06 06:35:20 +01:00
parent b085127242
commit 591d35c1d7
2 changed files with 52 additions and 0 deletions

View File

@ -1,2 +1,4 @@
# lxqt-build-tools
Various packaging tools and scripts for LXQt applications.

50
lxqt-build-tools.spec Normal file
View File

@ -0,0 +1,50 @@
Name: lxqt-build-tools
Version: 0.4.0
Release: 1mamba
Summary: Various packaging tools and scripts for LXQt applications
Group: Applications/Development
Vendor: openmamba
Distribution: openmamba
Packager: Silvan Calarco <silvan.calarco@mambasoft.it>
URL: https://github.com/lxde/lxqt-build-tools.git
## GITSOURCE https://github.com/lxde/lxqt-build-tools.git 0.4.0
Source: https://github.com/lxde/lxqt-build-tools.git/%{version}/lxqt-build-tools-%{version}.tar.bz2
License: BSD
## AUTOBUILDREQ-BEGIN
## AUTOBUILDREQ-END
BuildRequires: cmake
BuildRoot: %{_tmppath}/%{name}-%{version}-root
%description
Various packaging tools and scripts for LXQt applications.
%package devel
Group: Development/Libraries
Summary: Various packaging tools and scripts for LXQt applications
%description devel
Various packaging tools and scripts for LXQt applications.
%prep
%setup -q
%build
%cmake -d build
%make
%install
[ "%{buildroot}" != / ] && rm -rf "%{buildroot}"
%makeinstall -C build
%clean
[ "%{buildroot}" != / ] && rm -rf "%{buildroot}"
%files devel
%defattr(-,root,root)
%dir %{_datadir}/cmake/lxqt-build-tools
%{_datadir}/cmake/lxqt-build-tools/*
%doc AUTHORS
%changelog
* Sat Jan 13 2018 Silvan Calarco <silvan.calarco@mambasoft.it> 0.4.0-1mamba
- package created using the webbuild interface