package created using the webbuild interface [release 0.0.6-1mamba;Sat Apr 11 2020]

This commit is contained in:
Silvan Calarco 2024-01-05 18:46:10 +01:00
parent b2b80846d6
commit 0a334ad3b9
2 changed files with 84 additions and 0 deletions

View File

@ -1,2 +1,4 @@
# uchardet
The Uchardet package contains an encoding detectory library which takes a sequence of bytes in an unknown character encoding and attempts to determine the encoding of the text.

82
uchardet.spec Normal file
View File

@ -0,0 +1,82 @@
Name: uchardet
Version: 0.0.6
Release: 1mamba
Summary: An encoding detectory tool and library
Group: Development/Tools
Vendor: openmamba
Distribution: openmamba
Packager: Silvan Calarco <silvan.calarco@mambasoft.it>
URL: https://www.freedesktop.org/wiki/Software/uchardet/
Source: https://www.freedesktop.org/software/uchardet/releases/uchardet-%{version}.tar.xz
License: LGPL
## AUTOBUILDREQ-BEGIN
BuildRequires: glibc-devel
BuildRequires: ldconfig
BuildRequires: libgcc
BuildRequires: libstdc++6-devel
## AUTOBUILDREQ-END
BuildRequires: cmake
Requires: lib%{name} = %{?epoch:%epoch:}%{version}-%{release}
BuildRoot: %{_tmppath}/%{name}-%{version}-root
%description
The Uchardet package contains an encoding detectory library which takes a sequence of bytes in an unknown character encoding and attempts to determine the encoding of the text.
%package -n lib%{name}
Group: System/Libraries
Summary: Shared libraries for %{name}
%description -n lib%{name}
This package contains shared libraries for %{name}.
%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
%cmake -d build
%make
%install
[ "%{buildroot}" != / ] && rm -rf "%{buildroot}"
%makeinstall -C build
%clean
[ "%{buildroot}" != / ] && rm -rf "%{buildroot}"
%post -n lib%{name} -p /sbin/ldconfig
%postun -n lib%{name} -p /sbin/ldconfig
%files
%defattr(-,root,root)
%{_bindir}/uchardet
%{_mandir}/man1/uchardet.1*
%files -n lib%{name}
%defattr(-,root,root)
%{_libdir}/libuchardet.so.*
%doc AUTHORS COPYING
%files -n lib%{name}-devel
%defattr(-,root,root)
%dir %{_includedir}/uchardet
%{_includedir}/uchardet/uchardet.h
%{_libdir}/libuchardet.a
%{_libdir}/libuchardet.so
%{_libdir}/pkgconfig/uchardet.pc
%doc README.md
%changelog
* Sat Apr 11 2020 Silvan Calarco <silvan.calarco@mambasoft.it> 0.0.6-1mamba
- package created using the webbuild interface