Use this new PyMod template

git-svn-id: svn://svn.openwrt.org/openwrt/packages@8523 3c298f89-4303-0410-b956-a3cf2f4a3e73
This commit is contained in:
florian 2007-08-28 12:42:11 +00:00
parent cc2877bd2c
commit 6f9ac84898
3 changed files with 11 additions and 14 deletions

View File

@ -25,11 +25,7 @@ define Package/kid
endef
define Build/Compile
cd $(PKG_BUILD_DIR); \
CFLAGS='-I$(STAGING_DIR)/usr/include' \
LDFLAGS='$(TARGET_LDFLAGS) -L$(STAGING_DIR)/usr/lib' \
$(STAGING_DIR)/usr/bin/hostpython ./setup.py install \
--prefix=$(PKG_INSTALL_DIR)/usr
$(call Build/Compile/PyMod,,install)
endef
define Package/kid/install

View File

@ -26,12 +26,11 @@ define Package/pyevent
endef
define Build/Compile
cd $(PKG_BUILD_DIR); \
LIBEVENT_HOME='$(STAGING_DIR)/usr/lib' \
CFLAGS='-I$(STAGING_DIR)/usr/include' \
LDFLAGS='$(TARGET_LDFLAGS)' \
$(STAGING_DIR)/usr/bin/hostpython ./setup.py install \
--prefix=$(PKG_INSTALL_DIR)/usr
$(call Build/Compile/PyMod,\
LIBEVENT_HOME='$(STAGING_DIR)/usr/lib' \
,\
install \
)
endef
define Package/pyevent/install

View File

@ -24,9 +24,11 @@ define Package/pypcap
endef
define Build/Compile
cd $(PKG_BUILD_DIR); \
PCAP_HOME=$(STAGING_DIR)/usr \
$(STAGING_DIR)/usr/bin/hostpython ./setup.py build
$(call Build/Compile/PyMod,\
PCAP_HOME=$(STAGING_DIR)/usr \
,\
install \
)
endef
define Package/pypcap/install