]> git.pld-linux.org Git - packages/alsa-patch-bay.git/commitdiff
- Initial import.
authordeejay1 <deejay1@pld-linux.org>
Mon, 28 Apr 2003 21:47:42 +0000 (21:47 +0000)
committercvs2git <feedback@pld-linux.org>
Sun, 24 Jun 2012 12:13:13 +0000 (12:13 +0000)
Changed files:
    alsa-patch-bay.spec -> 1.1

alsa-patch-bay.spec [new file with mode: 0644]

diff --git a/alsa-patch-bay.spec b/alsa-patch-bay.spec
new file mode 100644 (file)
index 0000000..cdc6083
--- /dev/null
@@ -0,0 +1,70 @@
+# Conditional build:
+# _with_fltk           enable fltk UI
+# _without_gtkmm       disable gtkmm UI
+#
+# TODO:
+# - PL translations - I have absolutely no idea for it :/
+#   but for now it works as it should...
+#
+Summary:       A GUI patchbay for ALSA and JACK.
+Name:          alsa-patch-bay
+Version:       0.5.1
+Release:       1
+License:       GPL
+Group:         X11/Applications/Sound
+Source0:       http://pkl.net/~node/software/%{name}-%{version}.tar.gz
+Patch0:                %{name}-Makefile.patch
+Patch1:                %{name}-desktop.patch
+URL:           http://pkl.net/~node/alsa-patch-bay.html
+BuildRequires: autoconf
+BuildRequires: automake
+BuildRequires: libtool
+BuildRequires: jack-audio-connection-kit-devel
+BuildRequires: pkgconfig
+%{!?_without_gtkmm:BuildRequires:      gtkmm-devel}
+%{?_with_fltk:BuildRequires:   fltk-devel}
+Provides:      jack-patch-bay
+BuildRoot:     %{tmpdir}/%{name}-%{version}-root-%(id -u -n)
+
+%description
+ALSA Patch Bay is a GUI patchbay for the ALSA seq sequencer api and
+the JACK audio API. It can use FLTK 1.1 or GTKmm 2.0.0.
+
+%prep
+%setup -q -n %{name}-%{version}
+%patch0 -p1
+%patch1 -p1
+
+%build
+rm -f missing
+%{__libtoolize}
+%{__aclocal} -I m4
+%{__autoconf}
+%{__autoheader}
+%{__automake}
+%configure \
+%if %{?_with_fltk:0}%{!?_with_fltk:1}
+    --disable-fltk \
+    --disable-fltk-test \
+%endif
+%{?_without_gtkmm:--disable-gtkmm}
+
+%{__make}
+
+%install
+rm -rf $RPM_BUILD_ROOT
+
+%{__make} install DESTDIR=$RPM_BUILD_ROOT
+
+%clean
+rm -rf $RPM_BUILD_ROOT
+
+
+%files
+%defattr(644,root,root,755)
+%doc NEWS AUTHORS README
+%attr(755,root,root) %{_bindir}/*
+%{_datadir}/applications/*.desktop
+%attr(755,root,root) %{_libdir}/%{name}/driver/*.so
+%attr(755,root,root) %{_libdir}/%{name}/ui/*.so
+%{_pixmapsdir}/*.png
This page took 0.03621 seconds and 4 git commands to generate.