70 lines
2.0 KiB
RPMSpec
70 lines
2.0 KiB
RPMSpec
Name: libb64
|
|
Version: 1.2
|
|
Release: 1mamba
|
|
Summary: A library of ANSI C routines for fast encoding/decoding data into and from a base64-encoded format
|
|
Group: System/Libraries
|
|
Vendor: openmamba
|
|
Distribution: openmamba
|
|
Packager: Silvan Calarco <silvan.calarco@mambasoft.it>
|
|
URL: https://libb64.sourceforge.net/
|
|
Source: https://sourceforge.net/projects/libb64/files/libb64/libb64/libb64-%{version}.src.zip
|
|
Patch0: libb64-1.2-bufsiz-as-buffer-size.patch
|
|
License: Public Domain
|
|
## AUTOBUILDREQ-BEGIN
|
|
BuildRequires: glibc-devel
|
|
## AUTOBUILDREQ-END
|
|
|
|
%description
|
|
libb64 is a library of ANSI C routines for fast encoding/decoding data into and from a base64-encoded format. C++ wrappers are included, as well as the source code for standalone encoding and decoding executables.
|
|
|
|
%package devel
|
|
Group: Development/Libraries
|
|
Summary: Development files for %{name}
|
|
Requires: %{name} = %{?epoch:%epoch:}%{version}-%{release}
|
|
|
|
%description devel
|
|
This package contains libraries and header files for developing applications that use %{name}.
|
|
|
|
%debug_package
|
|
|
|
%prep
|
|
%setup -q
|
|
%patch 0 -p1 -b .bufsiz-as-buffer-size
|
|
|
|
%build
|
|
cd src
|
|
export CFLAGS="%{optflags} -fPIC"
|
|
%make
|
|
|
|
export CFLAGS="${CFLAGS} -shared -Wl,-soname,libb64.so.0"
|
|
gcc ${LDFLAGS} ${CFLAGS} *.o -o libb64.so.0
|
|
|
|
%install
|
|
[ "%{buildroot}" != / ] && rm -rf "%{buildroot}"
|
|
install -D -m0755 src/libb64.so.0 %{buildroot}%{_libdir}/libb64.so.0
|
|
ln -sf libb64.so.0 %{buildroot}%{_libdir}/libb64.so
|
|
|
|
cp -r include %{buildroot}%{_prefix}
|
|
|
|
%clean
|
|
[ "%{buildroot}" != / ] && rm -rf "%{buildroot}"
|
|
|
|
%post -p /sbin/ldconfig
|
|
%postun -p /sbin/ldconfig
|
|
|
|
%files
|
|
%defattr(-,root,root)
|
|
%{_libdir}/libb64.so.*
|
|
%doc AUTHORS LICENSE
|
|
|
|
%files devel
|
|
%defattr(-,root,root)
|
|
%dir %{_includedir}/b64
|
|
%{_includedir}/b64/*
|
|
%{_libdir}/libb64.so
|
|
%doc README
|
|
|
|
%changelog
|
|
* Sun Aug 04 2024 Silvan Calarco <silvan.calarco@mambasoft.it> 1.2-1mamba
|
|
- package created using the webbuild interface
|