diff --git a/README.md b/README.md index 6785e40..af713b3 100644 --- a/README.md +++ b/README.md @@ -1,2 +1,4 @@ # libaal +This is a library that provides application abstraction mechanism. It includes device abstraction, libc independence code, etc. + diff --git a/libaal.spec b/libaal.spec new file mode 100644 index 0000000..375bf23 --- /dev/null +++ b/libaal.spec @@ -0,0 +1,67 @@ +Name: libaal +Version: 1.0.5 +Release: 2mamba +Summary: A library that provides application abstraction mechanism +Group: System/Libraries +Vendor: openmamba +Distribution: openmamba +Packager: Silvan Calarco +URL: http://www.kernel.org +Source: http://www.kernel.org/pub/linux/utils/fs/reiser4/libaal/libaal-%{version}.tar.bz2 +License: GPL +## AUTOBUILDREQ-BEGIN +BuildRequires: glibc-devel +## AUTOBUILDREQ-END +BuildRoot: %{_tmppath}/%{name}-%{version}-root + +%description +This is a library that provides application abstraction mechanism. It includes device abstraction, libc independence code, etc. + +%package devel +Group: Development/Libraries +Summary: Static libraries and headers for %{name} +Requires: %{name} = %{?epoch:%epoch:}%{version}-%{release} + +%description devel +This is a library that provides application abstraction mechanism. It includes device abstraction, libc independence code, etc. + +This package contains static libraries and header files need for development. + +%prep + +%setup -q + +%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 BUGS COPYING CREDITS ChangeLog README THANKS TODO + +%files devel +%defattr(-,root,root) +%dir %{_includedir}/aal +%{_includedir}/aal/*.h +%{_libdir}/*.a +%{_libdir}/*.la +%{_libdir}/*.so +%{_datadir}/aclocal/libaal.m4 + +%changelog +* Sat Jul 13 2013 Automatic Build System 1.0.5-2mamba +- automatic rebuild by autodist + +* Wed May 20 2009 Silvan Calarco 1.0.5-1mamba +- package created by autospec