61 lines
1.4 KiB
Makefile
61 lines
1.4 KiB
Makefile
|
#
|
||
|
# Copyright (C) 2008 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:=gnome-python-desktop
|
||
|
PKG_VERSION:=2.16.0
|
||
|
PKG_RELEASE:=1
|
||
|
PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.bz2
|
||
|
PKG_SOURCE_URL:=http://ftp.gnome.org/pub/GNOME/sources/gnome-python-desktop/2.16/
|
||
|
PKG_FIXUP:=libtool
|
||
|
|
||
|
include $(INCLUDE_DIR)/package.mk
|
||
|
|
||
|
EXTRA_CFLAGS+= -I$(STAGING_DIR)/usr/lib/libintl/include/ -I$(STAGING_DIR)/usr/lib/libiconv/include/
|
||
|
EXTRA_LDFLAGS+=-Wl,-rpath-link=$(STAGING_DIR)/usr/lib
|
||
|
|
||
|
define Package/gnome-python-desktop
|
||
|
SUBMENU:=Python
|
||
|
SECTION:=lang
|
||
|
CATEGORY:=Languages
|
||
|
TITLE:=Window Navigator Construction Kit
|
||
|
URL:=http://ftp.gnome.org/
|
||
|
DEPENDS:=+libwnck +python-gtk
|
||
|
endef
|
||
|
|
||
|
define Package/gnome-python-desktop/description
|
||
|
python bindings for gnome
|
||
|
endef
|
||
|
|
||
|
define Build/Configure
|
||
|
(cd $(PKG_BUILD_DIR); \
|
||
|
if [ -x $(CONFIGURE_CMD) ]; then \
|
||
|
$(CP) $(SCRIPT_DIR)/config.{guess,sub} $(PKG_BUILD_DIR)/ && \
|
||
|
$(CONFIGURE_VARS) \
|
||
|
$(CONFIGURE_CMD) \
|
||
|
$(CONFIGURE_ARGS) ;\
|
||
|
fi \
|
||
|
)
|
||
|
endef
|
||
|
|
||
|
define Build/Compile
|
||
|
cd $(PKG_BUILD_DIR) ; DESTDIR=$(PKG_INSTALL_DIR) $(MAKE) all install
|
||
|
endef
|
||
|
|
||
|
define Build/InstallDev
|
||
|
mkdir -p $(1)
|
||
|
cp -r $(PKG_INSTALL_DIR)/* $(1)
|
||
|
endef
|
||
|
|
||
|
define Package/gnome-python-desktop/install
|
||
|
mkdir -p $(1)
|
||
|
cp -r $(PKG_INSTALL_DIR)/* $(1)
|
||
|
endef
|
||
|
|
||
|
$(eval $(call BuildPackage,gnome-python-desktop))
|