- Modernise spec file OBS-URL: https://build.opensuse.org/request/show/1229840 OBS-URL: https://build.opensuse.org/package/show/graphics/libpcd?expand=0&rev=4
66 lines
1.8 KiB
RPMSpec
66 lines
1.8 KiB
RPMSpec
#
|
|
# spec file for package libpcd
|
|
#
|
|
# 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/
|
|
#
|
|
|
|
|
|
%define sover 2
|
|
Name: libpcd
|
|
Version: 1.0.1
|
|
Release: 0
|
|
Summary: Library For Reading PhotoCD Images
|
|
License: GPL-2.0-or-later
|
|
URL: http://bytesex.org/libpcd.html
|
|
Source: http://www.kraxel.org/releases/libpcd/%{name}_%{version}.tar.gz
|
|
|
|
%description
|
|
Libraries for reading PhotoCD images.
|
|
|
|
%package -n %{name}%{sover}
|
|
Summary: Library For Reading PhotoCD Images
|
|
|
|
%description -n %{name}%{sover}
|
|
Libraries for reading PhotoCD images.
|
|
|
|
%package devel
|
|
Summary: Library For Reading PhotoCD Images
|
|
Requires: %{name}%{sover} = %{version}
|
|
|
|
%description devel
|
|
Header files for library for reading PhotoCD images.
|
|
|
|
%prep
|
|
%autosetup
|
|
|
|
%build
|
|
%make_build prefix=%{_prefix} CFLAGS="%{optflags}" libdir=%{_libdir} all
|
|
|
|
%install
|
|
make prefix=%{_prefix} CFLAGS="%{optflags}" DESTDIR=%{buildroot} libdir=%{buildroot}%{_libdir} install
|
|
rm -f %{buildroot}%{_libdir}/libpcd.a
|
|
|
|
%ldconfig_scriptlets -n %{name}%{sover}
|
|
|
|
%files -n %{name}%{sover}
|
|
%{_libdir}/libpcd.so.%{sover}*
|
|
|
|
%files devel
|
|
%doc pcd.html pcd.css
|
|
%doc README
|
|
%{_includedir}/pcd.h
|
|
%{_libdir}/libpcd.so
|
|
|
|
%changelog
|