update to 1.0.0 [release 1.0.0-1mamba;Sat Nov 27 2021]
This commit is contained in:
parent
e863d0f9b8
commit
563f93dfd9
@ -1,4 +1,3 @@
|
|||||||
# wineasio
|
# wineasio
|
||||||
|
|
||||||
WineASIO is a ASIO driver for wine, allowing to run Windows audio applications with low latency (as JACK clients).
|
WineASIO is a ASIO driver for wine, allowing to run Windows audio applications with low latency (as JACK clients).
|
||||||
|
|
||||||
|
@ -1,34 +1,32 @@
|
|||||||
Name: wineasio
|
Name: wineasio
|
||||||
Version: 0.9.2
|
Version: 1.0.0
|
||||||
Release: 1mamba
|
Release: 1mamba
|
||||||
Summary: wine ASIO driver for JACK
|
Summary: wine ASIO driver for JACK
|
||||||
Group: Applications/Multimedia
|
Group: Applications/Multimedia
|
||||||
Vendor: openmamba
|
Vendor: openmamba
|
||||||
Distribution: openmamba
|
Distribution: openmamba
|
||||||
Packager: Tiziana Ferro <tiziana.ferro@email.it>
|
Packager: Silvan Calarco <silvan.calarco@mambasoft.it>
|
||||||
URL: http://sourceforge.net/projects/wineasio/
|
URL: https://github.com/wineasio/wineasio
|
||||||
Source0: http://downloads.sourceforge.net/project/wineasio/wineasio-%{version}.tar.gz
|
Source0: https://github.com/wineasio/wineasio.git/v%{version}/wineasio-%{version}.tar.bz2
|
||||||
Source1: asiosdk2.2.zip
|
Source1: asiosdk2.2.zip
|
||||||
Patch: wineasio_install.patch
|
Patch: wineasio_install.patch
|
||||||
License: LGPL
|
License: LGPL
|
||||||
## AUTOBUILDREQ-BEGIN
|
## AUTOBUILDREQ-BEGIN
|
||||||
BuildRequires: e2fsprogs
|
|
||||||
BuildRequires: glibc-devel
|
BuildRequires: glibc-devel
|
||||||
BuildRequires: jack
|
|
||||||
BuildRequires: libjack-devel
|
BuildRequires: libjack-devel
|
||||||
BuildRequires: wine-devel
|
|
||||||
## AUTOBUILDREQ-END
|
## AUTOBUILDREQ-END
|
||||||
#BuildRequires: alsa-devel asiosdk e2fsprogs-devel
|
#BuildRequires: alsa-devel asiosdk e2fsprogs-devel
|
||||||
BuildRequires: wine-devel >= 1.5.2-3mamba
|
BuildRequires: wine-devel >= 1.5.2-3mamba
|
||||||
Requires: wine-core
|
Requires: wine-core
|
||||||
Requires: jack
|
Requires: jack
|
||||||
BuildRoot: %{_tmppath}/%{name}-%{version}-root
|
|
||||||
|
|
||||||
%description
|
%description
|
||||||
WineASIO is a ASIO driver for wine, allowing to run Windows audio applications with low latency (as JACK clients).
|
WineASIO is a ASIO driver for wine, allowing to run Windows audio applications with low latency (as JACK clients).
|
||||||
|
|
||||||
|
#% debug_package
|
||||||
|
|
||||||
%prep
|
%prep
|
||||||
%setup -q -n %{name}
|
%setup -q
|
||||||
#%patch -p1
|
#%patch -p1
|
||||||
|
|
||||||
%build
|
%build
|
||||||
@ -36,21 +34,42 @@ unzip -o ${startdir}/%{SOURCE1} ASIOSDK2/common/asio.h || return 1
|
|||||||
mv ASIOSDK2/common/asio.h ./
|
mv ASIOSDK2/common/asio.h ./
|
||||||
rm -rf ASIOSDK2
|
rm -rf ASIOSDK2
|
||||||
|
|
||||||
%make PREFIX=%{_prefix} DESTDIR=%{buildroot}
|
%make PREFIX=%{_prefix} DESTDIR=%{buildroot} \
|
||||||
|
%ifarch %{ix86} arm
|
||||||
|
32
|
||||||
|
%else
|
||||||
|
64
|
||||||
|
%endif
|
||||||
|
|
||||||
%install
|
%install
|
||||||
[ "%{buildroot}" != / ] && rm -rf "%{buildroot}"
|
[ "%{buildroot}" != / ] && rm -rf "%{buildroot}"
|
||||||
install -D -m 755 -s wineasio.dll.so %{buildroot}%{_libdir}/wine/wineasio.dll.so
|
|
||||||
|
%makeinstall -C gui
|
||||||
|
|
||||||
|
install -D -m 755 -s \
|
||||||
|
%ifarch x86_64
|
||||||
|
build64/wineasio.dll.so \
|
||||||
|
%endif
|
||||||
|
%ifarch %{ix86}
|
||||||
|
build32/wineasio.dll.so \
|
||||||
|
%endif
|
||||||
|
%{buildroot}%{_libdir}/wine/wineasio.dll.so
|
||||||
|
|
||||||
%clean
|
%clean
|
||||||
[ "%{buildroot}" != / ] && rm -rf "%{buildroot}"
|
[ "%{buildroot}" != / ] && rm -rf "%{buildroot}"
|
||||||
|
|
||||||
%files
|
%files
|
||||||
%defattr(-,root,root)
|
%defattr(-,root,root)
|
||||||
|
%{_bindir}/wineasio-settings
|
||||||
|
%dir %{_datadir}/wineasio
|
||||||
|
%{_datadir}/wineasio/*
|
||||||
%{_libdir}/wine/*
|
%{_libdir}/wine/*
|
||||||
%doc README
|
%doc COPYING.LIB COPYING.GUI
|
||||||
|
|
||||||
%changelog
|
%changelog
|
||||||
|
* Sat Nov 27 2021 Silvan Calarco <silvan.calarco@mambasoft.it> 1.0.0-1mamba
|
||||||
|
- update to 1.0.0
|
||||||
|
|
||||||
* Sun Jun 01 2014 Automatic Build System <autodist@mambasoft.it> 0.9.2-1mamba
|
* Sun Jun 01 2014 Automatic Build System <autodist@mambasoft.it> 0.9.2-1mamba
|
||||||
- automatic update by autodist
|
- automatic update by autodist
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user