123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778 |
- Name: loopidity
- Version: 0.00.000
- Release: 1%{?dist}
- Summary: Multi-track multi-channel looping audio recorder designed for live hands-free use
- License: GPL-3.0
- URL: https://github.com/bill-auger/%{name}/
- Source0: https://github.com/bill-auger/%{name}/archive/v%{version}.tar.gz
- BuildRequires: gcc-c++
- Requires: SDL_gfx SDL_ttf
- %if 0%{?suse_version}
- BuildRequires: jack-devel SDL_gfx-devel SDL_ttf-devel libX11-devel update-desktop-files
- Requires: jack
- %endif
- %if 0%{?fedora_version}
- BuildRequires: jack-audio-connection-kit-devel SDL_gfx-devel SDL_ttf-devel libX11-devel
- Requires: jack-audio-connection-kit
- %endif
- %description
- Loopidity is a native GNU/Linux and Windows application built with
- the SDL framework and using the JACK Connection Kit for audio I/O.
- Loopidity is designed so that the most useful functions can be controlled
- using as few buttons as possible (a small number of foot pedals for example).
- The Loopidity state graph is kept as small and linear as possible
- so that it can be easily memorized; as not to hinder the creative workflow,
- but to quickly become an intuitive activity.
- %global debug_package %{nil}
- %prep
- %autosetup
- %build
- cd build/
- make %{?_smp_mflags}
- %install
- cd build/
- make DESTDIR="%{buildroot}/" PREFIX=/usr install
- %files
- %doc
- %{_bindir}/%{name}
- %_datadir/%{name}
- %post
- %if ! 0%{?suse_version}
- xdg-desktop-menu forceupdate
- %endif
- %postun
- %if ! 0%{?suse_version}
- xdg-desktop-menu forceupdate
- %endif
|