2010-02-11 22:12:07 +02:00
|
|
|
# This is free software, licensed under the GNU General Public License
|
|
|
|
# v3. See /LICENSE for more information.
|
|
|
|
include $(TOPDIR)/rules.mk
|
|
|
|
|
|
|
|
PKG_NAME:=pygame
|
|
|
|
PKG_VERSION:=1.9.1release
|
|
|
|
PKG_RELEASE:=1
|
|
|
|
PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.gz
|
|
|
|
PKG_SOURCE_URL:=http://www.pygame.org/ftp/
|
|
|
|
|
|
|
|
PKG_BUILD_DEPENDS:=python
|
|
|
|
|
|
|
|
include $(INCLUDE_DIR)/package.mk
|
|
|
|
-include $(if $(DUMP),,$(STAGING_DIR)/mk/python-package.mk)
|
|
|
|
|
|
|
|
define Package/pygame
|
2011-11-02 05:18:44 +02:00
|
|
|
SUBMENU:=Python
|
|
|
|
SECTION:=lang
|
|
|
|
CATEGORY:=Languages
|
|
|
|
TITLE:=pygame
|
|
|
|
URL:=http://pygame.org
|
2012-10-12 20:30:07 +03:00
|
|
|
DEPENDS:=+python-mini +libsdl +libpng +libjpeg +libsdl-image +libsdl-mixer +libsdl-ttf
|
2010-02-11 22:12:07 +02:00
|
|
|
endef
|
|
|
|
|
|
|
|
define Package/pygame/description
|
2011-11-02 05:18:44 +02:00
|
|
|
Pygame is a set of Python modules designed for writing video games.
|
|
|
|
Pygame adds functionality on top of the excellent SDL library.
|
|
|
|
This allows you to create fully featured games and multimedia programs in the python language.
|
2010-02-11 22:12:07 +02:00
|
|
|
endef
|
|
|
|
|
|
|
|
define Build/Compile
|
2010-02-15 21:06:35 +02:00
|
|
|
$(call Build/Compile/PyMod,,\
|
|
|
|
install \
|
|
|
|
--prefix="$(PKG_INSTALL_DIR)/usr" \
|
|
|
|
, \
|
|
|
|
LOCALBASE="$(STAGING_DIR)/usr" \
|
|
|
|
NO_SCRAP=1 \
|
|
|
|
)
|
2010-02-11 22:12:07 +02:00
|
|
|
endef
|
|
|
|
|
|
|
|
define Package/pygame/install
|
|
|
|
$(INSTALL_DIR) $(1)$(PYTHON_PKG_DIR)
|
|
|
|
$(CP) \
|
|
|
|
$(PKG_INSTALL_DIR)$(PYTHON_PKG_DIR)/* \
|
|
|
|
$(1)$(PYTHON_PKG_DIR)
|
|
|
|
endef
|
|
|
|
|
|
|
|
$(eval $(call BuildPackage,pygame))
|