84 lines
1.9 KiB
RPMSpec
84 lines
1.9 KiB
RPMSpec
#
|
|
# spec file for package libyui-ncurses-doc
|
|
#
|
|
# Copyright (c) 2020 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/
|
|
#
|
|
|
|
|
|
%define parent libyui-ncurses
|
|
%define so_version 11
|
|
|
|
Name: %{parent}-doc
|
|
Version: 2.54.5
|
|
Release: 0
|
|
Source: %{parent}-%{version}.tar.bz2
|
|
|
|
BuildArch: noarch
|
|
|
|
BuildRequires: cmake >= 2.8
|
|
BuildRequires: doxygen
|
|
BuildRequires: fdupes
|
|
BuildRequires: gcc-c++
|
|
BuildRequires: graphviz-gnome
|
|
BuildRequires: texlive-latex
|
|
# YCustomStatusItemSelector
|
|
BuildRequires: libyui-devel >= 3.8.4
|
|
|
|
Url: http://github.com/libyui/
|
|
Summary: Libyui-ncurses documentation
|
|
License: LGPL-2.1-only OR LGPL-3.0-only
|
|
Group: Documentation/HTML
|
|
|
|
%description
|
|
This package contains the character based (ncurses) user interface
|
|
component for libYUI.
|
|
|
|
|
|
This package provides the documentation. (HTML & PDF)
|
|
|
|
|
|
%prep
|
|
|
|
%setup -n %{parent}-%{version}
|
|
|
|
%build
|
|
|
|
export CFLAGS="$RPM_OPT_FLAGS -DNDEBUG"
|
|
export CXXFLAGS="$RPM_OPT_FLAGS -DNDEBUG"
|
|
|
|
./bootstrap.sh %{_prefix}
|
|
|
|
mkdir build
|
|
cd build
|
|
cmake .. \
|
|
-DDOC_DIR=%{_docdir} \
|
|
-DDOCS_ONLY=ON
|
|
|
|
make %{?jobs:-j%jobs} docs
|
|
|
|
%install
|
|
cd build
|
|
make install DESTDIR="$RPM_BUILD_ROOT"
|
|
|
|
%fdupes -s $RPM_BUILD_ROOT/%_docdir/%{parent}%{so_version}
|
|
|
|
%clean
|
|
rm -rf "$RPM_BUILD_ROOT"
|
|
|
|
%files
|
|
%defattr(-,root,root)
|
|
%doc %{_docdir}/%{parent}%{so_version}
|
|
|
|
%changelog
|