12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576 |
- #
- # spec file for package loopidity
- #
- # Copyright (c) 2012-2107 bill-auger bill-auger@programmer.net
- #
- # All modifications and additions to the file contributed by third parties
- # remain the property of their copyright owners, unless otherwise agreed
- # upon. The license for this file, and modifications and additions to the
- # file, is the same license as for the pristine package itself (unless the
- # license for the pristine package is not an Open Source License, in which
- # case the license is the MIT License). An "Open Source License" is a
- # license that conforms to the Open Source Definition (Version 1.9)
- # published by the Open Source Initiative.
- # Please submit bugfixes or comments via http://bugs.opensuse.org/
- #
- Name: loopidity
- Version: 0.14.005
- 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++ libX11-devel sdl_gfx-devel sdl_ttf-devel
- %if 0%{?sles_version} || 0%{?suse_version}
- BuildRequires: update-desktop-files
- Requires: sdl_gfx sdl_ttf
- %endif
- %if 0%{?centos_version} || 0%{?fedora_version} || 0%{?rhel_version}
- BuildRequires:
- Requires: sdl_gfx sdl_ttf
- %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.
- %prep
- %autosetup
- %build
- cd build/
- ./configure
- make %{?_smp_mflags}
- %install
- cd build/
- make DESTDIR="%{buildroot}/" install
- %files
- %doc
- %{_bindir}/%{name}
- %post
- %if ! 0%{?suse_version}
- xdg-desktop-menu forceupdate
- %endif
- %postun
- %if ! 0%{?suse_version}
- xdg-desktop-menu forceupdate
- %endif
- # SENTINEL: DO NOT DELETE - build/hooks/pre-commit will clobber below this line
- %changelog
- * Thu Jul 13 2017 bill-auger
- - v0.14.005
|