56 lines
1.4 KiB
Makefile
56 lines
1.4 KiB
Makefile
|
#
|
||
|
# Copyright (C) 2006 OpenWrt.org
|
||
|
#
|
||
|
# This is free software, licensed under the GNU General Public License v2.
|
||
|
# See /LICENSE for more information.
|
||
|
#
|
||
|
|
||
|
include $(TOPDIR)/rules.mk
|
||
|
|
||
|
PKG_NAME:=fso
|
||
|
PKG_VERSION:=20090103
|
||
|
PKG_REV:=cbddf72db7ee7f06c5863bce6d4055652e66b25b
|
||
|
PKG_RELEASE:=1
|
||
|
|
||
|
PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.bz2
|
||
|
PKG_SOURCE_URL:=git://git.freesmartphone.org/framework.git
|
||
|
PKG_SOURCE_PROTO:=git
|
||
|
PKG_SOURCE_SUBDIR:=$(PKG_NAME)-$(PKG_VERSION)
|
||
|
PKG_SOURCE_VERSION:=$(PKG_REV)
|
||
|
|
||
|
PKG_BUILD_DEPENDS:=cython python
|
||
|
|
||
|
include $(INCLUDE_DIR)/package.mk
|
||
|
-include $(if $(DUMP),,$(STAGING_DIR)/mk/python-package.mk)
|
||
|
|
||
|
define Package/fso
|
||
|
SECTION:=phone
|
||
|
CATEGORY:=Phone
|
||
|
TITLE:=freesmartphone.org DBus API reference implementation
|
||
|
DEPENDS:=python-core +dbus
|
||
|
URL:=http://www.freesmartphone.org
|
||
|
endef
|
||
|
|
||
|
define Package/fso/description
|
||
|
freesmartphone.org is a collaboration platform for open source and open discussion software projects working on interoperability and shared technology for Linux-based SmartPhones
|
||
|
endef
|
||
|
|
||
|
define Build/Compile
|
||
|
$(call Build/Compile/PyMod,,install --prefix="$(PKG_INSTALL_DIR)/usr")
|
||
|
endef
|
||
|
|
||
|
define Package/fso/install
|
||
|
$(INSTALL_DIR) $(1)$(PYTHON_PKG_DIR) $(1)/usr/bin $(1)/etc
|
||
|
$(CP) \
|
||
|
$(PKG_INSTALL_DIR)$(PYTHON_PKG_DIR)/* \
|
||
|
$(1)$(PYTHON_PKG_DIR)
|
||
|
$(CP) \
|
||
|
$(PKG_INSTALL_DIR)/usr/bin/* \
|
||
|
$(1)/usr/bin/
|
||
|
$(CP) \
|
||
|
$(PKG_INSTALL_DIR)/etc/* \
|
||
|
$(1)/etc/
|
||
|
endef
|
||
|
|
||
|
$(eval $(call BuildPackage,fso))
|