package created using the webbuild interface [release 2.3.0-1mamba;Tue May 25 2021]

This commit is contained in:
Silvan Calarco 2024-01-05 18:52:47 +01:00
parent e107b18aa5
commit f8e24feb39
2 changed files with 50 additions and 0 deletions

View File

@ -1,2 +1,4 @@
# uthash
A hash table for C structures.

48
uthash.spec Normal file
View File

@ -0,0 +1,48 @@
Name: uthash
Version: 2.3.0
Release: 1mamba
Summary: A hash table for C structures
Group: System/Libraries
Vendor: openmamba
Distribution: openmamba
Packager: Silvan Calarco <silvan.calarco@mambasoft.it>
URL: https://troydhanson.github.io/uthash/
Source: https://github.com/troydhanson/uthash.git/v%{version}/uthash-%{version}.tar.bz2
License: BSD
## AUTOBUILDREQ-BEGIN
## AUTOBUILDREQ-END
%description
A hash table for C structures.
%package devel
Group: Development/Libraries
Summary: A hash table for C structures.
%description devel
A hash table for C structures.
This package contains headers for developing applications that use %{name}.
#% debug_package
%prep
%setup -q
%build
%install
[ "%{buildroot}" != / ] && rm -rf "%{buildroot}"
install -d -m0755 %{buildroot}%{_includedir}
cp src/*.h %{buildroot}%{_includedir}/
%clean
[ "%{buildroot}" != / ] && rm -rf "%{buildroot}"
%files devel
%defattr(-,root,root)
%{_includedir}/*.h
%doc LICENSE
%changelog
* Tue May 25 2021 Silvan Calarco <silvan.calarco@mambasoft.it> 2.3.0-1mamba
- package created using the webbuild interface