Compare commits
No commits in common. "rawhide" and "f27" have entirely different histories.
7 changed files with 161 additions and 1 deletions
2
.gitignore
vendored
Normal file
2
.gitignore
vendored
Normal file
|
|
@ -0,0 +1,2 @@
|
|||
xsynth-dssi-0.9.2.tar.gz
|
||||
/xsynth-dssi-0.9.4.tar.gz
|
||||
|
|
@ -1 +0,0 @@
|
|||
Orphaned for 6+ weeks
|
||||
1
sources
Normal file
1
sources
Normal file
|
|
@ -0,0 +1 @@
|
|||
3432ecdac06407a992f80eb1c1ecf7cd xsynth-dssi-0.9.4.tar.gz
|
||||
10
xsynth-dssi-0.9.4-RELEASE
Normal file
10
xsynth-dssi-0.9.4-RELEASE
Normal file
|
|
@ -0,0 +1,10 @@
|
|||
Xsynth-DSSI 0.9.4 Release Notes
|
||||
|
||||
Xsynth-DSSI is a classic-analog (VCOs-VCF-VCA) style software
|
||||
synthesizer which operates as a plugin for the DSSI Soft Synth
|
||||
Interface.
|
||||
|
||||
Changes since version 0.9.2: this release, which adds no new
|
||||
synthesis features, fixes a number of minor bugs, makes patch
|
||||
handling more robust across locales, and uses cairo (when
|
||||
available) to draw nicer knobs in the GUI.
|
||||
9
xsynth-dssi.desktop
Normal file
9
xsynth-dssi.desktop
Normal file
|
|
@ -0,0 +1,9 @@
|
|||
[Desktop Entry]
|
||||
Name=Xsynth-DSSI
|
||||
GenericName=Software Synthesizer
|
||||
Comment=A classic-analog (VCOs-VCF-VCA) style software synthesizer
|
||||
Icon=xsynth-dssi
|
||||
Type=Application
|
||||
Exec=/usr/bin/xsynth-dssi
|
||||
Terminal=false
|
||||
Categories=Audio;AudioVideo;Midi;X-Synthesis;X-Jack;
|
||||
BIN
xsynth-dssi.png
Normal file
BIN
xsynth-dssi.png
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 464 B |
139
xsynth-dssi.spec
Normal file
139
xsynth-dssi.spec
Normal file
|
|
@ -0,0 +1,139 @@
|
|||
Summary: Classic-analog style software synthesizer
|
||||
Name: xsynth-dssi
|
||||
Version: 0.9.4
|
||||
Release: 16%{?dist}
|
||||
License: GPLv2+
|
||||
Group: Applications/Multimedia
|
||||
URL: http://dssi.sourceforge.net/download.html#Xsynth-DSSI
|
||||
Source0: http://download.sf.net/dssi/%{name}-%{version}.tar.gz
|
||||
Source1: http://download.sf.net/dssi/%{name}-%{version}-RELEASE
|
||||
Source2: %{name}.desktop
|
||||
# Derived from a screenshot from xsynth RHBZ#787588
|
||||
Source3: %{name}.png
|
||||
|
||||
BuildRequires: alsa-lib-devel
|
||||
BuildRequires: desktop-file-utils
|
||||
BuildRequires: dssi-devel
|
||||
BuildRequires: gtk2-devel
|
||||
BuildRequires: liblo-devel
|
||||
|
||||
Requires: dssi
|
||||
|
||||
%description
|
||||
Xsynth-DSSI is a classic-analog (VCOs-VCF-VCA) style software synthesizer which
|
||||
operates as a plugin for the DSSI Soft Synth Interface. DSSI is a plugin API
|
||||
for software instruments (soft synths) with user interfaces, permitting them to
|
||||
be hosted in-process by audio applications.
|
||||
|
||||
%prep
|
||||
%setup -q
|
||||
|
||||
cp -a %{SOURCE1} .
|
||||
|
||||
%build
|
||||
%configure
|
||||
make %{?_smp_mflags}
|
||||
|
||||
%install
|
||||
make install DESTDIR="$RPM_BUILD_ROOT" INSTALL="install -p"
|
||||
|
||||
# Make a symlink for easy access
|
||||
mkdir -p $RPM_BUILD_ROOT%{_bindir}
|
||||
ln -s jack-dssi-host $RPM_BUILD_ROOT%{_bindir}/%{name}
|
||||
|
||||
# Kill .la file
|
||||
rm $RPM_BUILD_ROOT%{_libdir}/dssi/%{name}.la
|
||||
|
||||
# Desktop file
|
||||
mkdir -p $RPM_BUILD_ROOT%{_datadir}/applications
|
||||
desktop-file-install \
|
||||
--dir ${RPM_BUILD_ROOT}%{_datadir}/applications \
|
||||
%{SOURCE2}
|
||||
|
||||
# Icon
|
||||
mkdir -p $RPM_BUILD_ROOT%{_datadir}/icons/hicolor/48x48/apps
|
||||
install -pm 644 %{SOURCE3} $RPM_BUILD_ROOT%{_datadir}/icons/hicolor/48x48/apps/%{name}.png
|
||||
|
||||
|
||||
%post
|
||||
touch --no-create %{_datadir}/icons/hicolor &>/dev/null || :
|
||||
|
||||
%postun
|
||||
if [ $1 -eq 0 ] ; then
|
||||
touch --no-create %{_datadir}/icons/hicolor &>/dev/null
|
||||
gtk-update-icon-cache %{_datadir}/icons/hicolor &>/dev/null || :
|
||||
fi
|
||||
|
||||
%posttrans
|
||||
gtk-update-icon-cache %{_datadir}/icons/hicolor &>/dev/null || :
|
||||
|
||||
|
||||
%files
|
||||
%doc AUTHORS ChangeLog README TODO COPYING *-RELEASE
|
||||
%{_bindir}/%{name}
|
||||
%{_libdir}/dssi/%{name}/
|
||||
%{_libdir}/dssi/%{name}.so
|
||||
%{_datadir}/%{name}/
|
||||
%{_datadir}/applications/%{name}.desktop
|
||||
%{_datadir}/icons/hicolor/48x48/apps/%{name}.png
|
||||
|
||||
%changelog
|
||||
* Thu Aug 03 2017 Fedora Release Engineering <releng@fedoraproject.org> - 0.9.4-16
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Binutils_Mass_Rebuild
|
||||
|
||||
* Thu Jul 27 2017 Fedora Release Engineering <releng@fedoraproject.org> - 0.9.4-15
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Mass_Rebuild
|
||||
|
||||
* Sat Feb 11 2017 Fedora Release Engineering <releng@fedoraproject.org> - 0.9.4-14
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_26_Mass_Rebuild
|
||||
|
||||
* Fri Feb 05 2016 Fedora Release Engineering <releng@fedoraproject.org> - 0.9.4-13
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_24_Mass_Rebuild
|
||||
|
||||
* Fri Jun 19 2015 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.9.4-12
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_23_Mass_Rebuild
|
||||
|
||||
* Mon Aug 18 2014 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.9.4-11
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_22_Mass_Rebuild
|
||||
|
||||
* Sun Jun 08 2014 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.9.4-10
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_Mass_Rebuild
|
||||
|
||||
* Sun Aug 04 2013 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.9.4-9
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_20_Mass_Rebuild
|
||||
|
||||
* Fri Feb 15 2013 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.9.4-8
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_19_Mass_Rebuild
|
||||
|
||||
* Sun Jul 22 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.9.4-7
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_18_Mass_Rebuild
|
||||
|
||||
* Mon Feb 06 2012 Orcan Ogetbil <oget[DOT]fedora[AT]gmail[DOT]com> - 0.9.4-6
|
||||
- Update the menu icon RHBZ#787588 from Martin Tarenskeen
|
||||
|
||||
* Sat Jan 14 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.9.4-5
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_17_Mass_Rebuild
|
||||
|
||||
* Tue Dec 06 2011 Adam Jackson <ajax@redhat.com> - 0.9.4-4
|
||||
- Rebuild for new libpng
|
||||
|
||||
* Tue Feb 08 2011 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.9.4-3
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_15_Mass_Rebuild
|
||||
|
||||
* Wed Sep 29 2010 jkeating - 0.9.4-2
|
||||
- Rebuilt for gcc bug 634757
|
||||
|
||||
* Sun Sep 26 2010 Orcan Ogetbil <oget[DOT]fedora[AT]gmail[DOT]com> - 0.9.4-1
|
||||
- Update to 0.9.4
|
||||
|
||||
* Tue Jul 20 2010 Orcan Ogetbil <oget[DOT]fedora[AT]gmail[DOT]com> - 0.9.2-4
|
||||
- Rebuild against new liblo-0.26
|
||||
|
||||
* Mon Jul 27 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.9.2-3
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild
|
||||
|
||||
* Thu Jun 04 2009 Orcan Ogetbil <oget[DOT]fedora[AT]gmail[DOT]com> - 0.9.2-2
|
||||
- Add icon cache scriptlet
|
||||
|
||||
* Sat May 30 2009 Orcan Ogetbil <oget[DOT]fedora[AT]gmail[DOT]com> - 0.9.2-1
|
||||
- Initial build
|
||||
Loading…
Add table
Add a link
Reference in a new issue