diff options
| author | David Kühling <dvdkhlng@gmx.de> | 2010-09-18 20:47:21 +0200 |
|---|---|---|
| committer | David Kühling <dvdkhlng@gmx.de> | 2010-09-18 20:47:21 +0200 |
| commit | 4bfce3b6e2ea095ea3d9f5d2d1018cc0a1e5ce09 (patch) | |
| tree | 58590463ada82a27eca0889312c32450358249a8 /pygame/Makefile | |
| download | qipackages-fork-4bfce3b6e2ea095ea3d9f5d2d1018cc0a1e5ce09.tar.gz | |
Major overhaul and cleanup. Support for .ubi image file installations.grafted
Only compile&install a minimum host Gforth for bootstrapping the target
Gforth, removing strange emacs-dependencies that cropped up earlier.
Image file can now be built on the nanonote using 'gforth-update-image'
command. Also, Gforth is now run through a wrapper that calls
'gforth-update-image' automatically, if necessary.
Also first attempts at supporting libcc C-interface libraries pre-compiled on
the host.
Tested to compile on amd64 and i386.
Diffstat (limited to 'pygame/Makefile')
| -rw-r--r-- | pygame/Makefile | 45 |
1 files changed, 45 insertions, 0 deletions
diff --git a/pygame/Makefile b/pygame/Makefile new file mode 100644 index 0000000..42b2757 --- /dev/null +++ b/pygame/Makefile @@ -0,0 +1,45 @@ +# 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 + SUBMENU:=Python + SECTION:=lang + CATEGORY:=Languages + TITLE:=pygame + URL:=http://pygame.org + DEPENDS:=+python-mini +libsdl +libpng +libjpeg +libsdl-image +libsdl-mixer +endef + +define Package/pygame/description +endef + +define Build/Compile + $(call Build/Compile/PyMod,,\ + install \ + --prefix="$(PKG_INSTALL_DIR)/usr" \ + , \ + LOCALBASE="$(STAGING_DIR)/usr" \ + NO_SCRAP=1 \ + ) +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)) |
