From 591d35c1d7e5adc05010c2e365229c4be0c23733 Mon Sep 17 00:00:00 2001 From: Silvan Calarco Date: Sat, 6 Jan 2024 06:35:20 +0100 Subject: [PATCH] package created using the webbuild interface [release 0.4.0-1mamba;Sat Jan 13 2018] --- README.md | 2 ++ lxqt-build-tools.spec | 50 +++++++++++++++++++++++++++++++++++++++++++ 2 files changed, 52 insertions(+) create mode 100644 lxqt-build-tools.spec diff --git a/README.md b/README.md index 24cbdb7..82a5770 100644 --- a/README.md +++ b/README.md @@ -1,2 +1,4 @@ # lxqt-build-tools +Various packaging tools and scripts for LXQt applications. + diff --git a/lxqt-build-tools.spec b/lxqt-build-tools.spec new file mode 100644 index 0000000..0766408 --- /dev/null +++ b/lxqt-build-tools.spec @@ -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 +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 0.4.0-1mamba +- package created using the webbuild interface