forked from pool/png__
Update to 0.2.10 OBS-URL: https://build.opensuse.org/request/show/744171 OBS-URL: https://build.opensuse.org/package/show/devel:libraries:c_c++/png++?expand=0&rev=5
51 lines
1.5 KiB
RPMSpec
51 lines
1.5 KiB
RPMSpec
#
|
|
# spec file for package png++
|
|
#
|
|
# Copyright (c) 2019 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 https://bugs.opensuse.org/
|
|
#
|
|
|
|
|
|
Name: png++
|
|
Version: 0.2.10
|
|
Release: 0
|
|
Summary: C++ wrapper for the libpng library
|
|
License: BSD-3-Clause
|
|
URL: https://www.nongnu.org/pngpp/
|
|
Source: https://download.savannah.nongnu.org/releases/pngpp/%{name}-%{version}.tar.gz
|
|
BuildArch: noarch
|
|
|
|
%description
|
|
PNG++ provides a C++ interface to libpng, the PNG reference implementation library.
|
|
|
|
%package -n %{name}-devel
|
|
Summary: C++ wrapper for libpng library
|
|
Requires: pkgconfig(libpng)
|
|
|
|
%description -n %{name}-devel
|
|
PNG++ provides a C++ interface to libpng, the PNG reference implementation library.
|
|
|
|
%prep
|
|
%setup -q
|
|
|
|
%build
|
|
|
|
%install
|
|
install -d -m 0755 %{buildroot}%{_includedir}/%{name}
|
|
install -m 0644 *.hpp %{buildroot}%{_includedir}/%{name}
|
|
|
|
%files -n %{name}-devel
|
|
%{_includedir}/%{name}
|
|
|
|
%changelog
|