SHA256
1
0
forked from pool/icoutils

Accepting request 66895 from graphics

Accepted submit request 66895 from user babelworx

OBS-URL: https://build.opensuse.org/request/show/66895
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/icoutils?expand=0&rev=1
This commit is contained in:
Sascha Peilicke 2011-04-14 08:22:42 +00:00 committed by Git OBS Bridge
commit fc97e3c07f
5 changed files with 138 additions and 0 deletions

23
.gitattributes vendored Normal file
View File

@ -0,0 +1,23 @@
## Default LFS
*.7z filter=lfs diff=lfs merge=lfs -text
*.bsp filter=lfs diff=lfs merge=lfs -text
*.bz2 filter=lfs diff=lfs merge=lfs -text
*.gem filter=lfs diff=lfs merge=lfs -text
*.gz filter=lfs diff=lfs merge=lfs -text
*.jar filter=lfs diff=lfs merge=lfs -text
*.lz filter=lfs diff=lfs merge=lfs -text
*.lzma filter=lfs diff=lfs merge=lfs -text
*.obscpio filter=lfs diff=lfs merge=lfs -text
*.oxt filter=lfs diff=lfs merge=lfs -text
*.pdf filter=lfs diff=lfs merge=lfs -text
*.png filter=lfs diff=lfs merge=lfs -text
*.rpm filter=lfs diff=lfs merge=lfs -text
*.tbz filter=lfs diff=lfs merge=lfs -text
*.tbz2 filter=lfs diff=lfs merge=lfs -text
*.tgz filter=lfs diff=lfs merge=lfs -text
*.ttf filter=lfs diff=lfs merge=lfs -text
*.txz filter=lfs diff=lfs merge=lfs -text
*.whl filter=lfs diff=lfs merge=lfs -text
*.xz filter=lfs diff=lfs merge=lfs -text
*.zip filter=lfs diff=lfs merge=lfs -text
*.zst filter=lfs diff=lfs merge=lfs -text

1
.gitignore vendored Normal file
View File

@ -0,0 +1 @@
.osc

3
icoutils-0.29.1.tar.bz2 Normal file
View File

@ -0,0 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:646c33e5ecefb2faa254fca01c816ceae3c854855f9dfe9e896e301fc8c61ea0
size 456955

41
icoutils.changes Normal file
View File

@ -0,0 +1,41 @@
-------------------------------------------------------------------
Mon Apr 11 10:58:07 UTC 2011 - lazy.kent@opensuse.org
- build requires libpng12-compat-devel for oS > 11.2
- added COPYING
-------------------------------------------------------------------
Sun Sep 5 21:51:45 UTC 2010 - lazy.kent.suse@gmail.com
- removed unnecessary build dependences
- marked manpages as docs
- minor spec formatting
-------------------------------------------------------------------
Mon Apr 12 07:12:52 UTC 2010 - lazy.kent.suse@gmail.com
- update to 0.29.1
- added new author
-------------------------------------------------------------------
Wed Oct 21 00:00:00 UTC 2009 - lazy.kent.suse@gmail.com
- update to 0.28.0
* license changed to GPLv3+
-------------------------------------------------------------------
Thu Oct 15 00:00:00 UTC 2009 - lazy.kent.suse@gmail.com
- spec-file corrected
-------------------------------------------------------------------
Fri Aug 14 00:00:00 UTC 2009 - lazy.kent.suse@gmail.com
- update to 0.27.0
* minor fixes
-------------------------------------------------------------------
Sun Mar 1 00:00:00 UTC 2009 - lazy.kent.suse@gmail.com
- spec-file corrected

70
icoutils.spec Normal file
View File

@ -0,0 +1,70 @@
# 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