update to 1.9.4 [release 1.9.4-1mamba;Fri Oct 18 2013]
This commit is contained in:
parent
cd321fe4f8
commit
b15238975b
@ -1,2 +1,4 @@
|
|||||||
# nas
|
# nas
|
||||||
|
|
||||||
|
The Network Audio System is a network transparent, client/server audio transport system. It can be described as the audio equivalent of an X server.
|
||||||
|
|
||||||
|
112
nas.spec
Normal file
112
nas.spec
Normal file
@ -0,0 +1,112 @@
|
|||||||
|
Name: nas
|
||||||
|
Version: 1.9.4
|
||||||
|
Release: 1mamba
|
||||||
|
Summary: A network transparent, client/server audio transport system
|
||||||
|
Group: System/Servers
|
||||||
|
Vendor: openmamba
|
||||||
|
Distribution: openmamba
|
||||||
|
Packager: Silvan Calarco <silvan.calarco@mambasoft.it>
|
||||||
|
URL: http://www.radscan.com/nas.html
|
||||||
|
Source: http://downloads.sourceforge.net/project/nas/nas/nas%20%{version}%20%28stable%29/nas-%{version}.src.tar.gz
|
||||||
|
License: GPL
|
||||||
|
BuildRoot: %{_tmppath}/%{name}-%{version}-root
|
||||||
|
## AUTOBUILDREQ-BEGIN
|
||||||
|
BuildRequires: bash
|
||||||
|
BuildRequires: glibc-devel
|
||||||
|
BuildRequires: libICE-devel
|
||||||
|
BuildRequires: libSM-devel
|
||||||
|
BuildRequires: libX11-devel
|
||||||
|
BuildRequires: libXau-devel
|
||||||
|
BuildRequires: libXaw-devel
|
||||||
|
BuildRequires: libXext-devel
|
||||||
|
BuildRequires: libXmu-devel
|
||||||
|
BuildRequires: libXp-devel
|
||||||
|
BuildRequires: libXpm-devel
|
||||||
|
BuildRequires: libXt-devel
|
||||||
|
BuildRequires: perl-devel
|
||||||
|
# getopts.pl.pm: perl requirement not resolved
|
||||||
|
## AUTOBUILDREQ-END
|
||||||
|
BuildRequires: imake
|
||||||
|
BuildRequires: gccmakedep
|
||||||
|
|
||||||
|
%description
|
||||||
|
The Network Audio System is a network transparent, client/server audio transport system. It can be described as the audio equivalent of an X server.
|
||||||
|
|
||||||
|
%package -n libaudio
|
||||||
|
Summary: Library for NAS, the network audio transport system
|
||||||
|
Group: System/Libraries
|
||||||
|
|
||||||
|
%description -n libaudio
|
||||||
|
Library for NAS, the network audio transport system.
|
||||||
|
|
||||||
|
%package -n libaudio-devel
|
||||||
|
Summary: Development file for libaudio, the Network Audio transport System library
|
||||||
|
Group: Development/Libraries
|
||||||
|
Requires: libaudio = %{version}-%{release}
|
||||||
|
|
||||||
|
%description -n libaudio-devel
|
||||||
|
Development file for libaudio, the Network Audio transport System library
|
||||||
|
|
||||||
|
%prep
|
||||||
|
%setup -q
|
||||||
|
|
||||||
|
%build
|
||||||
|
xmkmf
|
||||||
|
%make World LIBDIR=%{_libdir}/X11
|
||||||
|
|
||||||
|
%install
|
||||||
|
[ "%{buildroot}" != / ] && rm -rf "%{buildroot}"
|
||||||
|
%makeinstall LIBDIR=%{_libdir}/X11
|
||||||
|
|
||||||
|
%clean
|
||||||
|
[ "%{buildroot}" != / ] && rm -rf "%{buildroot}"
|
||||||
|
|
||||||
|
%files
|
||||||
|
%defattr(-,root,root)
|
||||||
|
%{_sysconfdir}/nas/nasd.conf.eg
|
||||||
|
%{_bindir}/auconvert
|
||||||
|
%{_bindir}/auctl
|
||||||
|
%{_bindir}/audemo
|
||||||
|
%{_bindir}/audial
|
||||||
|
%{_bindir}/auedit
|
||||||
|
%{_bindir}/auinfo
|
||||||
|
%{_bindir}/aupanel
|
||||||
|
%{_bindir}/auphone
|
||||||
|
%{_bindir}/auplay
|
||||||
|
%{_bindir}/aurecord
|
||||||
|
%{_bindir}/auscope
|
||||||
|
%{_bindir}/autool
|
||||||
|
%{_bindir}/auwave
|
||||||
|
%{_bindir}/checkmail
|
||||||
|
%{_bindir}/issndfile
|
||||||
|
%{_bindir}/nasd
|
||||||
|
%{_bindir}/playbucket
|
||||||
|
%{_bindir}/soundtoh
|
||||||
|
%{_libdir}/X11/AuErrorDB
|
||||||
|
%doc README README.CYGWIN TODO
|
||||||
|
|
||||||
|
%files -n libaudio
|
||||||
|
%defattr(-,root,root)
|
||||||
|
%{_libdir}/libaudio.so.*
|
||||||
|
|
||||||
|
%files -n libaudio-devel
|
||||||
|
%defattr(-,root,root)
|
||||||
|
%{_includedir}/audio/*.h
|
||||||
|
%{_libdir}/libaudio.a
|
||||||
|
%{_libdir}/libaudio.so
|
||||||
|
|
||||||
|
%changelog
|
||||||
|
* Fri Oct 18 2013 Automatic Build System <autodist@mambasoft.it> 1.9.4-1mamba
|
||||||
|
- update to 1.9.4
|
||||||
|
|
||||||
|
* Thu Jul 21 2011 Automatic Build System <autodist@mambasoft.it> 1.9.3-1mamba
|
||||||
|
- update to 1.9.3
|
||||||
|
|
||||||
|
* Mon Jul 26 2010 Automatic Build System <autodist@mambasoft.it> 1.9.2-1mamba
|
||||||
|
- update to 1.9.2
|
||||||
|
|
||||||
|
* Wed Nov 14 2007 Silvan Calarco <silvan.calarco@mambasoft.it> 1.9.1-1mamba
|
||||||
|
- update to 1.9.1
|
||||||
|
|
||||||
|
* Fri Aug 31 2007 Silvan Calarco <silvan.calarco@mambasoft.it> 1.9-1mamba
|
||||||
|
- package created by autospec
|
Loading…
Reference in New Issue
Block a user