diff --git a/README.md b/README.md index 8b390b6..4b16662 100644 --- a/README.md +++ b/README.md @@ -1,2 +1,6 @@ # xwax +xwax is an open-source vinyl emulation software for Linux. It allows DJs and turntablists to playback digital audio files (MP3, Ogg Vorbis, FLAC, AAC and more), controlled using a normal pair of turntables via timecoded vinyls. +It's designed for both beat mixing and scratch mixing. Needle drops, pitch changes, scratching, spinbacks and rewinds are all supported, and feel just like the audio is pressed onto the vinyl itself. +The focus is on an accurate vinyl feel which is efficient, stable and fast. + diff --git a/xwax.spec b/xwax.spec new file mode 100644 index 0000000..06441e4 --- /dev/null +++ b/xwax.spec @@ -0,0 +1,61 @@ +Name: xwax +Version: 1.5 +Release: 1mamba +Summary: An open-source vinyl emulation software +Group: Graphical Desktop/Applications/Multimedia +Vendor: openmamba +Distribution: openmamba +Packager: Silvan Calarco +URL: http://xwax.org/ +Source: http://xwax.org/releases/xwax-%{version}.tar.gz +License: GPL +## AUTOBUILDREQ-BEGIN +BuildRequires: glibc-devel +BuildRequires: libalsa-devel +BuildRequires: libjack-devel +BuildRequires: libSDL-devel +BuildRequires: libSDL_ttf-devel +## AUTOBUILDREQ-END +BuildRoot: %{_tmppath}/%{name}-%{version}-root + +%description +xwax is an open-source vinyl emulation software for Linux. It allows DJs and turntablists to playback digital audio files (MP3, Ogg Vorbis, FLAC, AAC and more), controlled using a normal pair of turntables via timecoded vinyls. +It's designed for both beat mixing and scratch mixing. Needle drops, pitch changes, scratching, spinbacks and rewinds are all supported, and feel just like the audio is pressed onto the vinyl itself. +The focus is on an accurate vinyl feel which is efficient, stable and fast. + +%debug_package + +%prep +%setup -q + +%build +./configure \ + --prefix=%{_prefix} \ + --enable-alsa \ + --enable-jack + +%make PREFIX=%{_prefix} + +%install +[ "%{buildroot}" != / ] && rm -rf "%{buildroot}" +%makeinstall PREFIX=%{_prefix} + +%clean +[ "%{buildroot}" != / ] && rm -rf "%{buildroot}" + +%files +%defattr(-,root,root) +%{_bindir}/xwax +%{_libexecdir}/xwax-import +%{_libexecdir}/xwax-scan +%dir %{_docdir}/xwax +%{_docdir}/xwax/* +%{_mandir}/man1/xwax.1* +%doc COPYING + +%changelog +* Sat Mar 01 2014 Automatic Build System 1.5-1mamba +- automatic version update by autodist + +* Mon Sep 16 2013 Silvan Calarco 1.4-1mamba +- package created by silvan using the webbuild interface