From 54e41b7611d2fd743e270de685f1393895e72409 Mon Sep 17 00:00:00 2001 From: Silvan Calarco Date: Sat, 6 Jan 2024 07:08:23 +0100 Subject: [PATCH] package created using the webbuild interface [release 1.4.23-1mamba;Fri Dec 19 2014] --- README.md | 4 +++ mhwaveedit.spec | 65 +++++++++++++++++++++++++++++++++++++++++++++++++ 2 files changed, 69 insertions(+) create mode 100644 mhwaveedit.spec diff --git a/README.md b/README.md index 5aabfb7..5f55125 100644 --- a/README.md +++ b/README.md @@ -1,2 +1,6 @@ # mhwaveedit +mhWaveEdit is a graphical program for editing, playing and recording sound files. It is lightweight, portable, user-friendly and handles large files very well. +The program itself has only simple editing features such as cut'n'paste and volume adjustment but it can also use Ladspa effect plugins and the effects provided by the SoX application. It can also support additional file formats besides wav through libsndfile and mp3/ogg import and export through lame and oggenc/oggdec. +For sound playback and recording, mhWaveEdit supports OSS, ALSA, Jack, SDL, PortAudio and EsounD. + diff --git a/mhwaveedit.spec b/mhwaveedit.spec new file mode 100644 index 0000000..42138d5 --- /dev/null +++ b/mhwaveedit.spec @@ -0,0 +1,65 @@ +Name: mhwaveedit +Version: 1.4.23 +Release: 1mamba +Summary: A graphical program for editing, playing and recording sound files +Group: Graphical Desktop/Applications/Multimedia +Vendor: openmamba +Distribution: openmamba +Packager: Silvan Calarco +URL: http://gna.org/projects/mhwaveedit +Source: http://download.gna.org/mhwaveedit/mhwaveedit-%{version}.tar.bz2 +License: GPL +## AUTOBUILDREQ-BEGIN +BuildRequires: glibc-devel +BuildRequires: libSDL-devel +BuildRequires: libalsa-devel +BuildRequires: libatk-devel +BuildRequires: libcairo-devel +BuildRequires: libesound-devel +BuildRequires: libfontconfig-devel +BuildRequires: libfreetype-devel +BuildRequires: libgdk-pixbuf-devel +BuildRequires: libglib-devel +BuildRequires: libgtk2-devel +BuildRequires: libjack-devel +BuildRequires: libpango-devel +BuildRequires: libpulseaudio-devel +BuildRequires: libsamplerate-devel +BuildRequires: libsndfile-devel +## AUTOBUILDREQ-END +BuildRoot: %{_tmppath}/%{name}-%{version}-root + +%description +mhWaveEdit is a graphical program for editing, playing and recording sound files. It is lightweight, portable, user-friendly and handles large files very well. +The program itself has only simple editing features such as cut'n'paste and volume adjustment but it can also use Ladspa effect plugins and the effects provided by the SoX application. It can also support additional file formats besides wav through libsndfile and mp3/ogg import and export through lame and oggenc/oggdec. +For sound playback and recording, mhWaveEdit supports OSS, ALSA, Jack, SDL, PortAudio and EsounD. + +%debug_package + +%prep +%setup -q + +%build +%configure +%make + +%install +[ "%{buildroot}" != / ] && rm -rf "%{buildroot}" +%makeinstall + +%find_lang %{name} || touch %{name}.lang + +%clean +[ "%{buildroot}" != / ] && rm -rf "%{buildroot}" + +%files -f %{name}.lang +%defattr(-,root,root) +%{_bindir}/mhwaveedit +%{_datadir}/applications/mhwaveedit.desktop +%{_mandir}/man1/mhwaveedit.1* +%{_datadir}/pixmaps/mhwaveedit.xpm +%doc AUTHORS COPYING + +%changelog +* Fri Dec 19 2014 Silvan Calarco 1.4.23-1mamba +- package created using the webbuild interface