Edgar Aichinger
7a3af60fa7
Prepare for RPM 4.20 OBS-URL: https://build.opensuse.org/request/show/1149493 OBS-URL: https://build.opensuse.org/package/show/multimedia:libs/non-ntk?expand=0&rev=24
127 lines
3.8 KiB
RPMSpec
127 lines
3.8 KiB
RPMSpec
#
|
|
# spec file for package non-ntk
|
|
#
|
|
# Copyright (c) 2024 SUSE LLC
|
|
#
|
|
# 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 https://bugs.opensuse.org/
|
|
#
|
|
|
|
|
|
Name: non-ntk
|
|
Version: 1.3.1001
|
|
Release: 0
|
|
Summary: A fork of FLTK for the non audio suite
|
|
# some codes are in GPLv2+ while FLTK derived code is LGPLv2+ (SUSE-FLTK)
|
|
# since linking to the same binary together, restricted solely to GPL-2.0+
|
|
License: GPL-2.0-or-later
|
|
Group: Development/Libraries/C and C++
|
|
URL: https://non.tuxfamily.org/
|
|
Source0: https://github.com/linuxaudio/ntk/archive/refs/tags/v%{version}/ntk-%{version}.tar.gz
|
|
# no desktop file in tarball
|
|
Source1: non-ntk-1.3.0-fluid.desktop
|
|
# sent upstream via email
|
|
Patch1: non-ntk-1.3.0-fsf.patch
|
|
Patch2: non-ntk-unused-shlib.patch
|
|
BuildRequires: cairo-devel
|
|
BuildRequires: libjpeg-devel
|
|
BuildRequires: pkgconfig
|
|
BuildRequires: zlib-devel
|
|
BuildRequires: pkgconfig(gl)
|
|
BuildRequires: pkgconfig(glu)
|
|
BuildRequires: pkgconfig(libpng)
|
|
BuildRequires: pkgconfig(xft)
|
|
# ./waf has a env python shebang, but is also compatible with python3
|
|
BuildRequires: python3-base
|
|
BuildRequires: gcc-c++
|
|
%if 0%{?suse_version}
|
|
BuildRequires: update-desktop-files
|
|
%endif
|
|
|
|
%description
|
|
The Non Tool Kit (NTK) is a fork of the Fast Light ToolKit library, adding
|
|
improved graphics rendering via Cairo, a streamlined and enhanced widget set,
|
|
and other features designed to improve the appearance and performance of the
|
|
Non applications. NTK is included in the Non distribution.
|
|
|
|
%package -n libntk1
|
|
Summary: Shared library files for %{name}
|
|
Group: Development/Libraries/C and C++
|
|
|
|
%description -n libntk1
|
|
This package contains shared libraries for %{name}.
|
|
|
|
%package devel
|
|
Summary: Development files for %{name}
|
|
Group: Development/Libraries/C and C++
|
|
Requires: libntk1 = %{version}-%{release}
|
|
|
|
%description devel
|
|
This package contains development files for %{name}.
|
|
|
|
%package fluid
|
|
Summary: Fast Light User Interface Designer
|
|
Group: Development/Tools/GUI Builders
|
|
Requires: %{name}-devel
|
|
|
|
%description fluid
|
|
%{summary}, an interactive GUI designer for %{name}.
|
|
|
|
%prep
|
|
%autosetup -p1 -n ntk-%{version}
|
|
|
|
sed -i -e "s|append_value('C\(.*\)FLAGS', CFLAGS|append_value('C\1FLAGS','%{optflags}'.split(' ')|" \
|
|
wscript
|
|
|
|
%build
|
|
LDFLAGS="%{?__global_ldflags}" python3 ./waf -v configure --prefix=%{_prefix} \
|
|
--libdir=%{_libdir} --enable-gl
|
|
python3 ./waf -v %{?_smp_mflags}
|
|
|
|
%install
|
|
python3 ./waf -v install --destdir=%{buildroot}
|
|
install -d -m 0755 %{buildroot}%{_datadir}/applications
|
|
install -D -m 0644 %{SOURCE1} %{buildroot}%{_datadir}/applications/ntk-fluid.desktop
|
|
rm %{buildroot}%{_libdir}/libntk*.a*
|
|
|
|
%if 0%{?suse_version}
|
|
%suse_update_desktop_file -i ntk-fluid Development GUIDesigner
|
|
%endif
|
|
|
|
%post -n libntk1 -p /sbin/ldconfig
|
|
%postun -n libntk1 -p /sbin/ldconfig
|
|
|
|
%postun fluid
|
|
update-desktop-database -q &> /dev/null
|
|
|
|
%post fluid
|
|
update-desktop-database -q &> /dev/null
|
|
|
|
%check
|
|
desktop-file-validate %{buildroot}%{_datadir}/applications/ntk-fluid.desktop
|
|
|
|
%files -n libntk1
|
|
%license COPYING
|
|
%{_libdir}/libntk*.so.*
|
|
|
|
%files devel
|
|
%{_libdir}/libntk.so
|
|
%{_libdir}/libntk_images.so
|
|
%{_libdir}/libntk_gl.so
|
|
%{_includedir}/ntk
|
|
%{_libdir}/pkgconfig/*
|
|
|
|
%files fluid
|
|
%{_datadir}/applications/ntk-fluid.desktop
|
|
%{_bindir}/ntk-*
|
|
|
|
%changelog
|