mirror of
https://github.com/motioneye-project/motioneyeos.git
synced 2025-07-26 20:56:33 +00:00
teach boa to compile
This commit is contained in:
parent
c04d0fca9a
commit
042bb97d17
@ -4,7 +4,7 @@
|
|||||||
#
|
#
|
||||||
#############################################################
|
#############################################################
|
||||||
|
|
||||||
BOA_VERSION=0.94.14rc4
|
BOA_VERSION=0.94.14rc20
|
||||||
|
|
||||||
# Don't alter below this line unless you (think) you know
|
# Don't alter below this line unless you (think) you know
|
||||||
# what you are doing! Danger, Danger!
|
# what you are doing! Danger, Danger!
|
||||||
@ -24,13 +24,32 @@ $(BOA_DIR)/.unpacked: $(DL_DIR)/$(BOA_SOURCE)
|
|||||||
$(BOA_WORKDIR)/Makefile: $(BOA_DIR)/.unpacked
|
$(BOA_WORKDIR)/Makefile: $(BOA_DIR)/.unpacked
|
||||||
rm -f $(BOA_WORKDIR)/Makefile
|
rm -f $(BOA_WORKDIR)/Makefile
|
||||||
mkdir -p $(BOA_WORKDIR)
|
mkdir -p $(BOA_WORKDIR)
|
||||||
(cd $(BOA_WORKDIR) && CONFIG_SITE=package/boa/boa-config.site-$(ARCH) \
|
#CONFIG_SITE=package/boa/boa-config.site-$(ARCH)
|
||||||
CC=$(TARGET_CC) $(BOA_DIR)/configure)
|
(cd $(BOA_WORKDIR); rm -rf config.cache; \
|
||||||
touch $(BOA_WORKDIR)/.depend
|
$(TARGET_CONFIGURE_OPTS) \
|
||||||
|
CFLAGS="$(TARGET_CFLAGS)" \
|
||||||
|
CPPFLAGS="$(SED_CFLAGS)" \
|
||||||
|
$(BOA_DIR)/configure \
|
||||||
|
--target=$(GNU_TARGET_NAME) \
|
||||||
|
--host=$(GNU_TARGET_NAME) \
|
||||||
|
--build=$(GNU_HOST_NAME) \
|
||||||
|
--prefix=/usr \
|
||||||
|
--exec-prefix=/usr \
|
||||||
|
--bindir=/usr/bin \
|
||||||
|
--sbindir=/usr/sbin \
|
||||||
|
--libexecdir=/usr/lib \
|
||||||
|
--sysconfdir=/etc \
|
||||||
|
--datadir=/usr/share \
|
||||||
|
--localstatedir=/var \
|
||||||
|
--mandir=/usr/man \
|
||||||
|
--infodir=/usr/info \
|
||||||
|
$(DISABLE_NLS) \
|
||||||
|
);
|
||||||
|
touch $(BOA_WORKDIR)/Makefile
|
||||||
|
|
||||||
$(BOA_WORKDIR)/boa $(BOA_WORKDIR)/boa_indexer: $(BOA_WORKDIR)/Makefile
|
$(BOA_WORKDIR)/boa $(BOA_WORKDIR)/boa_indexer: $(BOA_WORKDIR)/Makefile
|
||||||
rm -f $@
|
rm -f $@
|
||||||
$(MAKE) VPATH=$(BOA_DIR)/src/ -C $(BOA_WORKDIR)
|
$(MAKE) -C $(BOA_WORKDIR)
|
||||||
|
|
||||||
$(BOA_WORKDIR)/.installed: $(BOA_WORKDIR)/boa $(BOA_WORKDIR)/boa_indexer
|
$(BOA_WORKDIR)/.installed: $(BOA_WORKDIR)/boa $(BOA_WORKDIR)/boa_indexer
|
||||||
mkdir -p $(TARGET_DIR)/usr/sbin
|
mkdir -p $(TARGET_DIR)/usr/sbin
|
||||||
|
Loading…
x
Reference in New Issue
Block a user