Standardize package build (isn't it easier ?)
SVN-Revision: 981
This commit is contained in:
parent
f6ad530929
commit
e105366080
1 changed files with 14 additions and 13 deletions
|
@ -12,6 +12,7 @@ PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.bz2
|
||||||
PKG_CAT:=bzcat
|
PKG_CAT:=bzcat
|
||||||
|
|
||||||
PKG_BUILD_DIR:=$(BUILD_DIR)/$(PKG_NAME)-$(PKG_VERSION)
|
PKG_BUILD_DIR:=$(BUILD_DIR)/$(PKG_NAME)-$(PKG_VERSION)
|
||||||
|
PKG_INSTALL_DIR:=$(PKG_BUILD_DIR)/ipkg-install
|
||||||
|
|
||||||
include $(TOPDIR)/package/rules.mk
|
include $(TOPDIR)/package/rules.mk
|
||||||
|
|
||||||
|
@ -19,7 +20,7 @@ define PKG_mod_template
|
||||||
|
|
||||||
$$(IPKG_$(1)):
|
$$(IPKG_$(1)):
|
||||||
install -d -m0755 $$(IDIR_$(1))/usr/lib
|
install -d -m0755 $$(IDIR_$(1))/usr/lib
|
||||||
install -m0755 $(PKG_BUILD_DIR)/lib/$(2)*/olsrd_$(2).so.* $$(IDIR_$(1))/usr/lib/
|
install -m0755 $(PKG_INSTALL_DIR)/usr/lib/olsrd_$(2).so.* $$(IDIR_$(1))/usr/lib/
|
||||||
$(RSTRIP) $$(IDIR_$(1))
|
$(RSTRIP) $$(IDIR_$(1))
|
||||||
$(IPKG_BUILD) $$(IDIR_$(1)) $(PACKAGE_DIR)
|
$(IPKG_BUILD) $$(IDIR_$(1)) $(PACKAGE_DIR)
|
||||||
|
|
||||||
|
@ -41,26 +42,26 @@ $(eval $(call PKG_mod_template,OLSRD_MOD_POWER,power))
|
||||||
$(eval $(call PKG_mod_template,OLSRD_MOD_SECURE,secure))
|
$(eval $(call PKG_mod_template,OLSRD_MOD_SECURE,secure))
|
||||||
|
|
||||||
$(PKG_BUILD_DIR)/.configured:
|
$(PKG_BUILD_DIR)/.configured:
|
||||||
touch $(PKG_BUILD_DIR)/.configured
|
touch $@
|
||||||
|
|
||||||
$(PKG_BUILD_DIR)/.built:
|
$(PKG_BUILD_DIR)/.built:
|
||||||
|
rm -rf $(PKG_INSTALL_DIR)
|
||||||
|
mkdir -p $(PKG_INSTALL_DIR)
|
||||||
$(MAKE) -C "$(PKG_BUILD_DIR)" \
|
$(MAKE) -C "$(PKG_BUILD_DIR)" \
|
||||||
|
$(TARGET_CONFIGURE_OPTS) \
|
||||||
|
NODEBUG=1 \
|
||||||
|
OFLAGS="$(TARGET_CFLAGS)" \
|
||||||
OS="linux" \
|
OS="linux" \
|
||||||
CC="$(TARGET_CC)" \
|
INSTALL_PREFIX="$(PKG_INSTALL_DIR)" \
|
||||||
CFLAGS="$(TARGET_CFLAGS) -DOLSR_PLUGIN -I. -Isrc -Dlinux -I../../src -DNODEBUG" \
|
STRIP="/bin/true" \
|
||||||
libs
|
all libs install install_libs
|
||||||
$(MAKE) -C "$(PKG_BUILD_DIR)" \
|
touch $@
|
||||||
OS="linux" \
|
|
||||||
CC="$(TARGET_CC)" \
|
|
||||||
CFLAGS="$(TARGET_CFLAGS) -I. -Isrc -Dlinux -I../../src -DNODEBUG" \
|
|
||||||
all
|
|
||||||
touch $(PKG_BUILD_DIR)/.built
|
|
||||||
|
|
||||||
$(IPKG_OLSRD):
|
$(IPKG_OLSRD):
|
||||||
install -d -m0755 $(IDIR_OLSRD)/etc
|
install -d -m0755 $(IDIR_OLSRD)/etc
|
||||||
cp -fpR $(PKG_BUILD_DIR)/files/olsrd.conf.default.rfc $(IDIR_OLSRD)/etc/olsrd.conf
|
cp -fpR $(PKG_INSTALL_DIR)/etc/olsrd.conf $(IDIR_OLSRD)/etc/
|
||||||
install -d -m0755 $(IDIR_OLSRD)/usr/sbin
|
install -d -m0755 $(IDIR_OLSRD)/usr/sbin
|
||||||
cp -fpR $(PKG_BUILD_DIR)/olsrd $(IDIR_OLSRD)/usr/sbin/
|
cp -fpR $(PKG_INSTALL_DIR)/usr/sbin/olsrd $(IDIR_OLSRD)/usr/sbin/
|
||||||
install -d -m0755 $(IDIR_OLSRD)/etc/init.d
|
install -d -m0755 $(IDIR_OLSRD)/etc/init.d
|
||||||
cp -fpR ./files/olsrd.init $(IDIR_OLSRD)/etc/init.d/olsrd
|
cp -fpR ./files/olsrd.init $(IDIR_OLSRD)/etc/init.d/olsrd
|
||||||
$(RSTRIP) $(IDIR_OLSRD)
|
$(RSTRIP) $(IDIR_OLSRD)
|
||||||
|
|
Loading…
Reference in a new issue