package created by silvan using the webbuild interface [release 2.3.0-1mamba;Sat Mar 23 2013]

This commit is contained in:
Silvan Calarco 2024-01-06 05:46:15 +01:00
parent 8543197456
commit 09fb012798
2 changed files with 73 additions and 0 deletions

View File

@ -1,2 +1,4 @@
# libshout-idjc # libshout-idjc
Shoutcast client library for idjc.

71
libshout-idjc.spec Normal file
View File

@ -0,0 +1,71 @@
Name: libshout-idjc
Version: 2.3.0
Release: 1mamba
Summary: Shoutcast client library for idjc
Group: System/Libraries
Vendor: openmamba
Distribution: openmamba
Packager: Silvan Calarco <silvan.calarco@mambasoft.it>
URL: http://idjc.sourceforge.net/
Source: http://downloads.sourceforge.net/project/idjc/libshout-idjc/libshout-idjc-%{version}.tar.gz
License: LGPL
## AUTOBUILDREQ-BEGIN
BuildRequires: glibc-devel
BuildRequires: libogg-devel
BuildRequires: libspeex-devel
BuildRequires: libvorbis-devel
## AUTOBUILDREQ-END
BuildRoot: %{_tmppath}/%{name}-%{version}-root
%description
Shoutcast client library for idjc.
%package devel
Group: Development/Libraries
Summary: Development files for %{name}
Requires: %{name} = %{?epoch:%epoch:}%{version}-%{release}
Requires: pkg-config
%description devel
This package contains libraries and header files for developing applications that use %{name}.
%debug_package
%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}/libshout-idjc.so.*
%doc COPYING
%files devel
%defattr(-,root,root)
%dir %{_includedir}/shoutidjc
%{_includedir}/shoutidjc/shout.h
%{_libdir}/libshout-idjc.a
%{_libdir}/libshout-idjc.la
%{_libdir}/libshout-idjc.so
%{_libdir}/pkgconfig/shout-idjc.pc
%{_datadir}/doc/libshout-idjc/COPYING
%{_datadir}/doc/libshout-idjc/NEWS
%{_datadir}/doc/libshout-idjc/README
%doc NEWS README
%changelog
* Sat Mar 23 2013 Silvan Calarco <silvan.calarco@mambasoft.it> 2.3.0-1mamba
- package created by silvan using the webbuild interface