Jan Engelhardt
8c4cd5d518
Fix rpmlint "spurious-executable-permissions" warning. OBS-URL: https://build.opensuse.org/package/show/network:telephony/sffview?expand=0&rev=9
69 lines
2.1 KiB
RPMSpec
69 lines
2.1 KiB
RPMSpec
#
|
|
# spec file for package sffview
|
|
#
|
|
# Copyright (c) 2016 SUSE LINUX GmbH, Nuernberg, Germany.
|
|
#
|
|
# All modifications and additions to the file contributed by third parties
|
|
# remain the property of their copyright owners, unless otherwise agreed
|
|
# upon. The license for this file, and modifications and additions to the
|
|
# file, is the same license as for the pristine package itself (unless the
|
|
# license for the pristine package is not an Open Source License, in which
|
|
# case the license is the MIT License). An "Open Source License" is a
|
|
# license that conforms to the Open Source Definition (Version 1.9)
|
|
# published by the Open Source Initiative.
|
|
|
|
# Please submit bugfixes or comments via http://bugs.opensuse.org/
|
|
#
|
|
|
|
|
|
Name: sffview
|
|
BuildRequires: SDL-devel
|
|
BuildRequires: boost-devel
|
|
BuildRequires: gcc-c++
|
|
BuildRequires: libtiff-devel
|
|
BuildRequires: update-desktop-files
|
|
BuildRequires: wxWidgets-devel
|
|
BuildRequires: xorg-x11
|
|
Version: 0.4
|
|
Release: 0
|
|
Summary: Simple viewer for Structured Fax Files (.sff) used by ISDN applications
|
|
License: MIT
|
|
Group: Hardware/ISDN
|
|
Source: %{name}-%{version}.tar.bz2
|
|
Url: http://sfftools.sourceforge.net/
|
|
BuildRoot: %{_tmppath}/%{name}-%{version}-build
|
|
Patch0: %{name}-%{version}.diff
|
|
Patch1: %{name}-gcc43.diff
|
|
%define _use_internal_dependency_generator 0
|
|
%define __find_requires %wx_requires
|
|
|
|
%description
|
|
The CAPI interface for programming ISDN hardware expects and gives you
|
|
faxes in the "Structured Fax File" (SFF) format.
|
|
|
|
SffView is a viewer for SFF-files. SffView is written in C++ using the
|
|
wxWidgets/wxGTK toolkit and is therefore available for Linux and
|
|
Windows (wxWidgets is a platform independent toolkit and wxGTK is a
|
|
unix implementation based on GTK+, see wxWidgets homepage).
|
|
|
|
%prep
|
|
%setup
|
|
%patch0 -p1
|
|
%patch1
|
|
|
|
%build
|
|
make %{?_smp_mflags}
|
|
|
|
%install
|
|
install -d "%buildroot/%_bindir"
|
|
install sffview "%buildroot/%_bindir/"
|
|
install -d "%buildroot/%_defaultdocdir/sffview"
|
|
install -pm0644 doc/readme doc/copying testfax.sff "%buildroot/%_defaultdocdir/sffview/"
|
|
|
|
%files
|
|
%defattr(-,root,root,-)
|
|
/usr/bin/sffview
|
|
%doc %{_defaultdocdir}/sffview
|
|
|
|
%changelog
|