rebuilt as legacy package [release 1.0.0-2mamba;Sun Jul 06 2014]
This commit is contained in:
parent
3b5c18f09d
commit
cbdb30b51e
@ -1,2 +1,7 @@
|
||||
# libmowgli1
|
||||
|
||||
Mowgli is a development framework for C (like GLib), which provides high performance and highly flexible algorithms.
|
||||
It can be used as a supplement to GLib (to add additional functions (dictionaries, hashes),
|
||||
or replace some of the slow GLib list manipulation functions), or stand alone.
|
||||
It also provides a powerful hook system and convenient logging for your code, as well as a high performance block allocator.
|
||||
|
||||
|
81
libmowgli1.spec
Normal file
81
libmowgli1.spec
Normal file
@ -0,0 +1,81 @@
|
||||
Name: libmowgli1
|
||||
Version: 1.0.0
|
||||
Release: 2mamba
|
||||
Summary: A development framework for C
|
||||
Group: System/Libraries
|
||||
Vendor: openmamba
|
||||
Distribution: openmamba
|
||||
Packager: Silvan Calarco <silvan.calarco@mambasoft.it>
|
||||
URL: http://www.atheme.org/Projects/Libmowgli
|
||||
Source: http://distfiles.atheme.org/libmowgli-%{version}.tar.bz2
|
||||
License: BSD
|
||||
## AUTOBUILDREQ-BEGIN
|
||||
BuildRequires: glibc-devel
|
||||
## AUTOBUILDREQ-END
|
||||
BuildRoot: %{_tmppath}/%{name}-%{version}-root
|
||||
|
||||
%description
|
||||
Mowgli is a development framework for C (like GLib), which provides high performance and highly flexible algorithms.
|
||||
It can be used as a supplement to GLib (to add additional functions (dictionaries, hashes),
|
||||
or replace some of the slow GLib list manipulation functions), or stand alone.
|
||||
It also provides a powerful hook system and convenient logging for your code, as well as a high performance block allocator.
|
||||
|
||||
%package devel
|
||||
Group: Development/Libraries
|
||||
Summary: libraries and headers for %{name}
|
||||
Requires: %{name} = %{?epoch:%epoch:}%{version}-%{release}
|
||||
|
||||
%description devel
|
||||
This package contains libraries and header files need for development.
|
||||
|
||||
%prep
|
||||
%setup -q -n libmowgli-%{version}
|
||||
|
||||
%build
|
||||
%configure
|
||||
%make
|
||||
|
||||
%install
|
||||
[ "%{buildroot}" != / ] && rm -rf "%{buildroot}"
|
||||
%makeinstall
|
||||
|
||||
%clean
|
||||
[ "%{buildroot}" != / ] && rm -rf "%{buildroot}"
|
||||
|
||||
%post -p /sbin/ldconfig
|
||||
%postun -p /sbin/ldconfig
|
||||
|
||||
%files
|
||||
%defattr(-,root,root)
|
||||
%{_libdir}/*.so.*
|
||||
%doc AUTHORS COPYING
|
||||
|
||||
%files devel
|
||||
%defattr(-,root,root)
|
||||
%dir %{_includedir}/libmowgli
|
||||
%{_includedir}/libmowgli/*.h
|
||||
%{_libdir}/*.so
|
||||
%{_libdir}/pkgconfig/libmowgli.pc
|
||||
%doc README
|
||||
|
||||
%changelog
|
||||
* Sun Jul 06 2014 Silvan Calarco <silvan.calarco@mambasoft.it> 1.0.0-2mamba
|
||||
- rebuilt as legacy package
|
||||
|
||||
* Tue Aug 07 2012 Automatic Build System <autodist@mambasoft.it> 1.0.0-1mamba
|
||||
- automatic version update by autodist
|
||||
|
||||
* Fri Oct 21 2011 Automatic Build System <autodist@mambasoft.it> 0.9.95-1mamba
|
||||
- automatic version update by autodist
|
||||
|
||||
* Wed Feb 23 2011 Automatic Build System <autodist@mambasoft.it> 0.9.50-1mamba
|
||||
- update to 0.9.50
|
||||
|
||||
* Sat Jul 17 2010 Automatic Build System <autodist@mambasoft.it> 0.7.1-1mamba
|
||||
- automatic update by autodist
|
||||
|
||||
* Mon Sep 01 2008 gil <puntogil@libero.it> 0.7.0-1mamba
|
||||
- update to 0.7.0
|
||||
|
||||
* Mon May 12 2008 gil <puntogil@libero.it> 0.6.0-1mamba
|
||||
- package created by autospec
|
Loading…
Reference in New Issue
Block a user