forked from pool/python-sge-pygame
59 lines
1.9 KiB
RPMSpec
59 lines
1.9 KiB
RPMSpec
![]() |
#
|
||
|
# spec file for package python-sge-pygame
|
||
|
#
|
||
|
# Copyright (c) 2018 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/
|
||
|
|
||
|
|
||
|
%{?!python_module:%define python_module() python-%{**} python3-%{**}}
|
||
|
Name: python-sge-pygame
|
||
|
Version: 1.5
|
||
|
Release: 0
|
||
|
License: LGPL-3.0+
|
||
|
Summary: A 2-D game engine for Python
|
||
|
Url: http://stellarengine.nongnu.org
|
||
|
Group: Development/Languages/Python
|
||
|
Source: https://files.pythonhosted.org/packages/source/s/sge-pygame/sge-pygame-%{version}.tar.gz
|
||
|
BuildRequires: python-rpm-macros
|
||
|
BuildRequires: %{python_module setuptools}
|
||
|
Requires: python-pygame >= 1.9.1
|
||
|
Requires: python-six >= 1.4.0
|
||
|
BuildRequires: fdupes
|
||
|
BuildArch: noarch
|
||
|
%python_subpackages
|
||
|
|
||
|
%description
|
||
|
The SGE Game Engine ("SGE", pronounced like "Sage") is a general-purpose
|
||
|
2-D game engine. It takes care of several details for you so you can
|
||
|
focus on the game itself. This makes more rapid game development
|
||
|
possible, and it also makes the SGE easy to learn.
|
||
|
|
||
|
This implementation of the SGE uses Pygame as a backend.
|
||
|
|
||
|
%prep
|
||
|
%setup -q -n sge-pygame-%{version}
|
||
|
|
||
|
%build
|
||
|
%python_build
|
||
|
|
||
|
%install
|
||
|
%python_install
|
||
|
%python_expand %fdupes %{buildroot}%{$python_sitelib}
|
||
|
|
||
|
%files %{python_files}
|
||
|
%doc README README.pygame
|
||
|
%license sge/COPYING sge/COPYING.LESSER
|
||
|
%{python_sitelib}/*
|
||
|
|
||
|
%changelog
|