|
- # $Id$
- Summary: Jack Professional Audio Server
- Name: jack-audio-connection-kit
- Version: @JACK_VERSION@
- Release: 1
- License: GPL
- Group: System Environment/Daemons
- Source0: %{name}-%{version}.tar.gz
- URL: http://jackit.sourceforge.net
- Requires: %{name}-libs = %{version}
- BuildRoot: /var/tmp/%{name}-%{version}-root-%(id -u -n)
-
- %description
- Jack is a sound server aimed at satisfying the needs of music profesionals.
-
- %package libs
- Summary: Jack audio connection kit libraries
- Group: Development/Libraries
- %description libs
- The %{name}-libs package contains all libraries required for running
- programs using the Jack Audio Server.
-
- %package devel
- Summary: Header files for Jack
- Group: Development/Libraries
- Requires: %{name}-libs = %{version}
-
- %description devel
- Header files for jack.
-
- %prep
- %setup -q
-
- %build
- %configure
-
- %{__make}
-
- %install
- rm -rf $RPM_BUILD_ROOT
-
- %{__make} install \
- DESTDIR=$RPM_BUILD_ROOT
-
- gzip -9nf AUTHORS TODO
-
- %find_lang %{name}
-
- %post libs -p /sbin/ldconfig
- %postun libs -p /sbin/ldconfig
-
- %clean
- rm -rf $RPM_BUILD_ROOT
-
- %files
- %defattr(644,root,root,755)
- %doc *.gz
- %attr(755,root,root) %{_bindir}/*
-
- %files libs
- %defattr(644,root,root,755)
- %attr(755,root,root) %{_libdir}/lib*.so.*.*
-
- %files devel
- %defattr(644,root,root,755)
- %attr(755,root,root) %{_libdir}/lib*.so
- %attr(755,root,root) %{_libdir}/lib*.la
- %{_includedir}/jack/*.h
- %attr(755,root,root) %{_libdir}/pkgconfig/jack.pc
-
- %changelog
- * Sat May 4 2002 Christian Fredrik Kalager Schaller <uraeus@linuxrising.org>
- - initial release of jack sound server package for GStreamer
|