mirror of
git://projects.qi-hardware.com/openwrt-xburst.git
synced 2024-11-05 12:00:38 +02:00
2e9605c9ba
git-svn-id: svn://svn.openwrt.org/openwrt/trunk/openwrt@2749 3c298f89-4303-0410-b956-a3cf2f4a3e73
38 lines
903 B
Makefile
38 lines
903 B
Makefile
# $Id$
|
|
|
|
include $(TOPDIR)/rules.mk
|
|
|
|
PKG_NAME:=elhttp
|
|
PKG_VERSION:=0.22
|
|
PKG_RELEASE:=1
|
|
PKG_MD5SUM:=b52f68c47f709e9fc9429250eb8f954c
|
|
|
|
PKG_SOURCE_URL:=http://www.cr0.net:8040/code/network/
|
|
PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tgz
|
|
PKG_CAT:=gzcat
|
|
|
|
PKG_BUILD_DIR:=$(BUILD_DIR)/$(PKG_NAME)-$(PKG_VERSION)
|
|
PKG_INSTALL_DIR:=$(PKG_BUILD_DIR)/ipkg-install
|
|
|
|
include $(TOPDIR)/package/rules.mk
|
|
|
|
$(eval $(call PKG_template,ELHTTP,$(PKG_NAME),$(PKG_VERSION)-$(PKG_RELEASE),$(ARCH)))
|
|
|
|
$(PKG_BUILD_DIR)/.configured:
|
|
touch $@
|
|
|
|
$(PKG_BUILD_DIR)/.built:
|
|
mkdir -p $(PKG_INSTALL_DIR)/usr/sbin
|
|
$(MAKE) CC=$(TARGET_CC) CROSS=$(TARGET_CROSS) -C $(PKG_BUILD_DIR) \
|
|
DESTDIR="$(PKG_INSTALL_DIR)" \
|
|
all install
|
|
$(RSTRIP) $(PKG_INSTALL_DIR)/usr/sbin/
|
|
touch $@
|
|
|
|
$(IPKG_ELHTTP):
|
|
mkdir -p $(IDIR_ELHTTP)
|
|
cp -fpR $(PKG_INSTALL_DIR)/* $(IDIR_ELHTTP)/
|
|
$(RSTRIP) $(IDIR_ELHTTP)/
|
|
$(IPKG_BUILD) $(IDIR_ELHTTP) $(PACKAGE_DIR)
|
|
|