71 lines
2.0 KiB
RPMSpec
71 lines
2.0 KiB
RPMSpec
|
# vim: set ts=4 sw=4 et:
|
||
|
# kate: space-indent on; indent-width 4;
|
||
|
#
|
||
|
# spec file for package icoutils (Version 0.29.1)
|
||
|
#
|
||
|
# Copyright (c) 2009-2011 SUSE LINUX Products 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: icoutils
|
||
|
Version: 0.29.1
|
||
|
Release: 0
|
||
|
License: GPLv3+
|
||
|
Summary: Extracting and Converting Microsoft Icon and Cursor Files
|
||
|
URL: http://www.nongnu.org/icoutils/
|
||
|
Group: Productivity/Graphics/Other
|
||
|
Source0: %{name}-%{version}.tar.bz2
|
||
|
%if 0%{suse_version} < 1130
|
||
|
BuildRequires: libpng-devel
|
||
|
%else
|
||
|
BuildRequires: libpng12-compat-devel
|
||
|
%endif
|
||
|
BuildRequires: zlib-devel
|
||
|
BuildRoot: %{_tmppath}/%{name}-%{version}-build
|
||
|
|
||
|
%description
|
||
|
The icoutils are a set of programs for extracting and converting images
|
||
|
in Microsoft Windows icon and cursor files. These files usually have the
|
||
|
extension .ico or .cur, but they can also be embedded in executables or
|
||
|
libraries (.dll-files).
|
||
|
|
||
|
|
||
|
|
||
|
Authors:
|
||
|
--------
|
||
|
Frank Richter <frank.richter@gmail.com>
|
||
|
Oskar Liljeblad <oskar@osk.mine.nu>
|
||
|
|
||
|
%prep
|
||
|
%setup -q
|
||
|
|
||
|
%build
|
||
|
# Don't compile strange locales en@boldquot and en@quot.
|
||
|
# Otherwise, remove '--disable-nls'.
|
||
|
%configure --disable-nls
|
||
|
%__make %{?_smp_mflags}
|
||
|
|
||
|
%install
|
||
|
%makeinstall
|
||
|
|
||
|
%clean
|
||
|
%{?buildroot:%__rm -rf "%{buildroot}"}
|
||
|
|
||
|
%files
|
||
|
%defattr(-,root,root,-)
|
||
|
%doc AUTHORS ChangeLog COPYING NEWS README TODO
|
||
|
%doc %{_mandir}/man?/*
|
||
|
%{_bindir}/*
|
||
|
|
||
|
%changelog
|