diff --git a/README.md b/README.md index 47d2da8..0ddbf55 100644 --- a/README.md +++ b/README.md @@ -1,2 +1,4 @@ # bcunit +A fork of the defunct project CUnit, with several fixes and patches applied. + diff --git a/bcunit.spec b/bcunit.spec new file mode 100644 index 0000000..2b3b169 --- /dev/null +++ b/bcunit.spec @@ -0,0 +1,82 @@ +Name: bcunit +Version: 3.0.20161217git +Release: 1mamba +Summary: A fork of the defunct project CUnit, with several fixes and patches applied +Group: System/Libraries +Vendor: openmamba +Distribution: openmamba +Packager: Silvan Calarco +URL: http://linphone.org +## GITSOURCE https://github.com/BelledonneCommunications/bcunit.git 3.0 +Source: https://github.com/BelledonneCommunications/bcunit.git/master/bcunit-%{version}.tar.bz2 +License: LGPL +## AUTOBUILDREQ-BEGIN +BuildRequires: glibc-devel +## AUTOBUILDREQ-END +BuildRequires: cmake +BuildRoot: %{_tmppath}/%{name}-%{version}-root + +%description +A fork of the defunct project CUnit, with several fixes and patches applied. + +%package -n lib%{name} +Group: System/Libraries +Summary: A fork of the defunct project CUnit, with several fixes and patches applied + +%description -n lib%{name} +A fork of the defunct project CUnit, with several fixes and patches applied. + +%package -n lib%{name}-devel +Group: Development/Libraries +Summary: Development files for %{name} +Requires: lib%{name} = %{?epoch:%epoch:}%{version}-%{release} +Requires: pkg-config + +%description -n lib%{name}-devel +This package contains libraries and header files for developing applications that use %{name}. + + +%debug_package + +%prep +%setup -q + +%build +./autogen.sh +%configure + +%make + +%install +[ "%{buildroot}" != / ] && rm -rf "%{buildroot}" +%makeinstall docdir=%{_docdir}/BCUnit + +%clean +[ "%{buildroot}" != / ] && rm -rf "%{buildroot}" + +%post -n lib%{name} -p /sbin/ldconfig +%postun -n lib%{name} -p /sbin/ldconfig + +%files -n lib%{name} +%defattr(-,root,root) +%dir %{_datadir}/BCUnit +%{_datadir}/BCUnit/* +%{_libdir}/libbcunit.so.* +%doc AUTHORS COPYING + +%files -n lib%{name}-devel +%defattr(-,root,root) +%dir %{_includedir}/BCUnit +%{_includedir}/BCUnit/*.h +%{_libdir}/libbcunit.la +%{_libdir}/libbcunit.so +%{_libdir}/pkgconfig/bcunit.pc +%{_mandir}/man3/BCUnit.3* +%dir %{_docdir}/BCUnit +%{_docdir}/BCUnit/* +%doc ChangeLog NEWS README TODO + + +%changelog +* Sat Dec 17 2016 Silvan Calarco 3.0.20161217git-1mamba +- package created using the webbuild interface