package created using the webbuild interface [release 1.4.23-1mamba;Fri Dec 19 2014]

This commit is contained in:
Silvan Calarco 2024-01-06 07:08:23 +01:00
parent 0200246a95
commit 54e41b7611
2 changed files with 69 additions and 0 deletions

View File

@ -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.

65
mhwaveedit.spec Normal file
View File

@ -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 <silvan.calarco@mambasoft.it>
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 <silvan.calarco@mambasoft.it> 1.4.23-1mamba
- package created using the webbuild interface