119 lines
3.0 KiB
RPMSpec
119 lines
3.0 KiB
RPMSpec
Name: uchardet
|
|
Version: 0.0.6
|
|
Release: 2%{?dist}
|
|
Summary: An encoding detector library ported from Mozilla
|
|
|
|
License: MPLv1.1
|
|
URL: https://www.freedesktop.org/wiki/Software/%{name}
|
|
Source0: https://www.freedesktop.org/software/%{name}/releases/%{name}-%{version}.tar.xz
|
|
|
|
BuildRequires: gcc
|
|
BuildRequires: gcc-c++
|
|
BuildRequires: cmake
|
|
|
|
%description
|
|
Uchardet is a C language binding of the original C++ implementation of the
|
|
universal charset detection library by Mozilla. Uchardet is an encoding
|
|
detector library, which takes a sequence of bytes in an unknown character
|
|
encoding without any additional information, and attempts to determine the
|
|
encoding of the text.
|
|
|
|
%package devel
|
|
Summary: Development files for %{name}
|
|
Requires: %{name}%{?_isa} = %{version}-%{release}
|
|
|
|
%description devel
|
|
The %{name}-devel package contains headers and shared libraries
|
|
for developing tools for uchardet.
|
|
|
|
%prep
|
|
%autosetup
|
|
mkdir build
|
|
|
|
%build
|
|
pushd build
|
|
%cmake .. \
|
|
-DCMAKE_INSTALL_LIBDIR=%{_libdir} \
|
|
-DBUILD_STATIC=OFF
|
|
%make_build
|
|
popd
|
|
|
|
%install
|
|
pushd build
|
|
%make_install
|
|
popd
|
|
|
|
%post -p /sbin/ldconfig
|
|
%postun -p /sbin/ldconfig
|
|
|
|
%check
|
|
pushd build
|
|
ctest -VV \
|
|
%ifarch %{ix86}
|
|
|| :
|
|
%else
|
|
;
|
|
%endif
|
|
popd
|
|
|
|
%files
|
|
%license COPYING
|
|
%doc AUTHORS
|
|
%{_bindir}/%{name}
|
|
%{_libdir}/lib%{name}.so.*
|
|
%{_mandir}/man1/%{name}.1.*
|
|
|
|
%files devel
|
|
%{_includedir}/%{name}/
|
|
%{_libdir}/lib%{name}.so
|
|
%{_libdir}/pkgconfig/%{name}.pc
|
|
|
|
%changelog
|
|
* Sat Feb 11 2017 Fedora Release Engineering <releng@fedoraproject.org> - 0.0.6-2
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_26_Mass_Rebuild
|
|
|
|
* Thu Dec 22 2016 Ilya Gradina <ilya.gradina@gmail.com> - 0.0.6-1
|
|
- update version to 0.0.6
|
|
- changed upstream url
|
|
|
|
* Thu Jul 07 2016 Igor Gnatenko <i.gnatenko.brain@gmail.com> - 0.0.5-4
|
|
- Rebuild for f23 to fix i686
|
|
|
|
* Fri Feb 12 2016 Igor Gnatenko <i.gnatenko.brain@gmail.com> - 0.0.5-3
|
|
- Fixup summary in devel subpkg
|
|
|
|
* Mon Feb 08 2016 Igor Gnatenko <i.gnatenko.brain@gmail.com> - 0.0.5-2
|
|
- Fix building on i686 properly
|
|
|
|
* Sat Feb 6 2016 Ilya Gradina <ilya.gradina@gmail.com> - 0.0.5-1
|
|
- update version to 0.0.5
|
|
|
|
* Fri Nov 20 2015 Ilya Gradina <ilya.gradina@gmail.com> - 0.0.3-1
|
|
- update version to 0.0.3
|
|
- add tests
|
|
|
|
* Thu Oct 1 2015 Ilya Gradina <ilya.gradina@gmail.com> - 0.0.1-5
|
|
- remove macros srcname and sum
|
|
|
|
* Mon Sep 21 2015 Ilya Gradina <ilya.gradina@gmail.com> - 0.0.1-4
|
|
- fix enable debug packages
|
|
- fix add flag verbose for make
|
|
- fix change in build
|
|
- fix remove in libs from files
|
|
- fix add change for libs in post/postun
|
|
- fix version on 0.0.1 from git
|
|
- added macros
|
|
|
|
* Mon Sep 21 2015 Ilya Gradina <ilya.gradina@gmail.com> - 0.0.0-3
|
|
- fix description and summary for libs and libs-devel
|
|
|
|
* Mon Sep 21 2015 Ilya Gradina <ilya.gradina@gmail.com> - 0.0.0-2
|
|
- fix version on 0.0.0
|
|
- fix license path
|
|
- remove static lib
|
|
- fix description
|
|
- fix number packages
|
|
|
|
* Mon Sep 21 2015 Ilya Gradina <ilya.gradina@gmail.com> - 0.0.0-1
|
|
- Initial package
|