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 /python-pyneo/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 'python-pyneo/Makefile')
| -rw-r--r-- | python-pyneo/Makefile | 49 |
1 files changed, 49 insertions, 0 deletions
diff --git a/python-pyneo/Makefile b/python-pyneo/Makefile new file mode 100644 index 0000000..3bef690 --- /dev/null +++ b/python-pyneo/Makefile @@ -0,0 +1,49 @@ +# +# Copyright (C) 2010 pyneo.org +# +# This is free software, licensed under the GNU General Public License +# v3. See /LICENSE for more information. +# +include $(TOPDIR)/rules.mk + +PKG_NAME:=python-pyneo +PKG_VERSION:=1.26 +PKG_RELEASE:=1 + +PKG_SOURCE:=pyneo-$(PKG_VERSION).tar.gz +PKG_SOURCE_URL:=http://git.pyneo.org/browse/cgit/pyneo/snapshot/ +PKG_MD5SUM:=48cc3fe7c29ac385107cee08786a4477 + +PKG_BUILD_DIR=$(BUILD_DIR)/pyneo-$(PKG_VERSION)/$(PKG_NAME) +PKG_BUILD_DEPENDS:=python + +include $(INCLUDE_DIR)/package.mk +$(call include_mk, python-package.mk) + +define Package/python-pyneo + SUBMENU:=Python + SECTION:=lang + CATEGORY:=Languages + DEPENDS:=@BROKEN +python + TITLE:=Base lib for pyneo suite + URL:=http://pyneo.org/ +endef + +define Package/python-pyneo/description + Pyneo is a software stack for mobile devices. +endef + +define PyPackage/python-pyneo/filespec ++|$(PYTHON_PKG_DIR)/python-pyneo +-|$(PYTHON_PKG_DIR)/python-pyneo/data +endef + +define Build/Compile + $(if $(Build/Compile/PyMod),,@echo Python packaging code not found.; false) + $(call Build/Compile/PyMod,., \ + install --prefix="$(PKG_INSTALL_DIR)/usr", \ + ) +endef + +$(eval $(call PyPackage,python-pyneo)) +$(eval $(call BuildPackage,python-pyneo)) |
