update to 1.53 [release 1.53-1mamba;Thu Jan 02 2014]

This commit is contained in:
Stefano Cotta Ramusino 2024-01-05 22:02:25 +01:00
parent 0a0374592a
commit 89c6e40fe7
3 changed files with 73 additions and 0 deletions

View File

@ -1,2 +1,4 @@
# edfbrowser
A free, opensource, multiplatform, universal viewer and toolbox intended for, but not limited to, timeseries storage files like EEG, EMG, ECG, BioImpedance, etc.

8
edfbrowser.desktop Normal file
View File

@ -0,0 +1,8 @@
[Desktop Entry]
Name=EDF Browser
Comment=An universal viewer for medical timeseries storage files.
Exec=edfbrowser
Icon=edfbrowser
Terminal=false
Type=Application
Categories=Utility;

63
edfbrowser.spec Normal file
View File

@ -0,0 +1,63 @@
%define pkg_ver %(echo %{version} | tr -d '.')
Name: edfbrowser
Version: 1.53
Release: 1mamba
Summary: An universal viewer for medical timeseries storage files
Group: Graphical Desktop/Applications/Scientific
Vendor: openmamba
Distribution: openmamba
Packager: Stefano Cotta Ramusino <stefano.cotta@openmamba.org>
URL: http://www.teuniz.net/edfbrowser
Source: http://www.teuniz.net/edfbrowser/edfbrowser_%{pkg_ver}_source.tar.gz
Source1: edfbrowser.desktop
License: GPL
## AUTOBUILDREQ-BEGIN
BuildRequires: glibc-devel
BuildRequires: libgcc
BuildRequires: libqt4-devel
BuildRequires: libstdc++6-devel
## AUTOBUILDREQ-END
BuildRoot: %{_tmppath}/%{name}-%{version}-root
%description
A free, opensource, multiplatform, universal viewer and toolbox intended for, but not limited to, timeseries storage files like EEG, EMG, ECG, BioImpedance, etc.
%prep
%setup -q -n %{name}_%{pkg_ver}_source
sed -i 's,\(edfbrowser\)\(/manual\),\1-%{version}\2,' mainwindow.cpp
%build
%{_qt4_qmake}
%make
%install
[ "%{buildroot}" != / ] && rm -rf "%{buildroot}"
install -D -m 0755 edfbrowser %{buildroot}%{_bindir}/edfbrowser
install -D -m 0644 images/edf.png \
%{buildroot}%{_datadir}/icons/hicolor/48x48/apps/edfbrowser.png
install -D -m 0644 %{S:1} \
%{buildroot}%{_datadir}/applications/edfbrowser.desktop
%clean
[ "%{buildroot}" != / ] && rm -rf "%{buildroot}"
%files
%defattr(-,root,root)
%{_bindir}/*
%{_datadir}/icons/hicolor/48x48/apps/edfbrowser.png
%{_datadir}/applications/edfbrowser.desktop
%doc LICENSE disclaimer.txt version.txt doc/*
%changelog
* Thu Jan 02 2014 Stefano Cotta Ramusino <stefano.cotta@openmamba.org> 1.53-1mamba
- update to 1.53
* Mon Sep 16 2013 Stefano Cotta Ramusino <stefano.cotta@openmamba.org> 1.52-2mamba
- fix manual path in source code
* Thu Sep 12 2013 openmamba WebBuild System <webbuild@openmamba.org> 1.52-1mamba
- package created by stefano using the webbuild interface