use LIBGCC_S in fluxbox as well
[openwrt/svn-archive/archive.git] / phone / paroli / Makefile
1 #
2 # Copyright (C) 2006 OpenWrt.org
3 #
4 # This is free software, licensed under the GNU General Public License v2.
5 # See /LICENSE for more information.
6 #
7
8 include $(TOPDIR)/rules.mk
9
10 PKG_NAME:=paroli
11 PKG_VERSION:=20090104
12 PKG_REV:=39c30cb16cc04c478f79cd34fec7719c730469f7
13 PKG_RELEASE:=1
14
15 PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.bz2
16 PKG_SOURCE_URL:=git://git.openmoko.org/git/paroli.git
17 PKG_SOURCE_PROTO:=git
18 PKG_SOURCE_SUBDIR:=$(PKG_NAME)-$(PKG_VERSION)
19 PKG_SOURCE_VERSION:=$(PKG_REV)
20
21 PKG_BUILD_DEPENDS:=python
22
23 include $(INCLUDE_DIR)/package.mk
24 -include $(if $(DUMP),,$(STAGING_DIR)/mk/python-package.mk)
25
26 define Package/paroli
27 SECTION:=phone
28 CATEGORY:=Phone
29 TITLE:=integrated phone application
30 DEPENDS:=python-core +fso
31 URL:=http://wiki.openmoko.org/wiki/Paroli
32 endef
33
34 define Package/paroli/description
35 Paroli is an integrated phone application written in Python which uses the FSO (freesmartphone.org) DBus API
36 endef
37
38 define Build/Compile
39 $(call Build/Compile/PyMod,,install --prefix="$(PKG_INSTALL_DIR)/usr")
40 endef
41
42 define Package/paroli/install
43 $(INSTALL_DIR) $(1)$(PYTHON_PKG_DIR) $(1)/usr/bin $(1)/etc $(1)/usr/share/applications/paroli
44 $(CP) \
45 $(PKG_INSTALL_DIR)$(PYTHON_PKG_DIR)/* \
46 $(1)$(PYTHON_PKG_DIR)
47 $(CP) \
48 $(PKG_INSTALL_DIR)/usr/bin/* \
49 $(1)/usr/bin/
50 $(CP) \
51 $(PKG_INSTALL_DIR)/usr/applications/* \
52 $(1)/usr/share/applications/paroli/
53 $(CP) \
54 $(PKG_INSTALL_DIR)/etc/* \
55 $(1)/etc/
56 endef
57
58 $(eval $(call BuildPackage,paroli))