package created using the webbuild interface [release 1.6.1-1mamba;Thu Apr 08 2021]

This commit is contained in:
Silvan Calarco 2024-01-05 19:46:00 +01:00
parent b69cd33278
commit 609420fce8
2 changed files with 51 additions and 0 deletions

View File

@ -1,2 +1,4 @@
# xmlstarlet
Command Line XML Toolkit.

49
xmlstarlet.spec Normal file
View File

@ -0,0 +1,49 @@
Name: xmlstarlet
Version: 1.6.1
Release: 1mamba
Summary: Command Line XML Toolkit
Group: System/Tools
Vendor: openmamba
Distribution: openmamba
Packager: Silvan Calarco <silvan.calarco@mambasoft.it>
URL: http://xmlstar.sourceforge.net/
Source: https://sourceforge.net/projects/xmlstar/files/xmlstarlet/%{version}/xmlstarlet-%{version}.tar.gz
License: MIT
## AUTOBUILDREQ-BEGIN
## note: run 'autospec -u -a6 xmlstarlet' to get the list of build requirements.
## AUTOBUILDREQ-END
%description
Command Line XML Toolkit.
%debug_package
%prep
%setup -q
%build
%configure \
--enable-build-docs \
LIBXSLT_PREFIX=%{_prefix} \
LIBXML_PREFIX=%{_prefix}
%make
%install
[ "%{buildroot}" != / ] && rm -rf "%{buildroot}"
%makeinstall
%clean
[ "%{buildroot}" != / ] && rm -rf "%{buildroot}"
%files
%defattr(-,root,root)
%{_bindir}/xml
%dir %{_datadir}/doc/xmlstarlet
%{_datadir}/doc/xmlstarlet/*
%{_mandir}/man1/xmlstarlet.1*
%doc AUTHORS COPYING
%changelog
* Thu Apr 08 2021 Silvan Calarco <silvan.calarco@mambasoft.it> 1.6.1-1mamba
- package created using the webbuild interface