mirror of
https://github.com/motioneye-project/motioneyeos.git
synced 2025-07-30 14:46:31 +00:00
fbv : convert to autotools infrastructure
Changes by Thomas Petazzoni <thomas.petazzoni@free-electrons.com> * Target installation is the default behaviour * No installation to staging is the default behaviour * Remove FBV_BINARY/FBV_TARGET_BINARY variables Signed-off-by: cmchao <cmchao@gmail.com>
This commit is contained in:
parent
c4c8b25467
commit
9486dcc93a
@ -6,23 +6,11 @@
|
|||||||
FBV_VERSION:=1.0b
|
FBV_VERSION:=1.0b
|
||||||
FBV_SOURCE:=fbv-$(FBV_VERSION).tar.gz
|
FBV_SOURCE:=fbv-$(FBV_VERSION).tar.gz
|
||||||
FBV_SITE:=http://s-tech.elsat.net.pl/fbv
|
FBV_SITE:=http://s-tech.elsat.net.pl/fbv
|
||||||
FBV_DIR:=$(BUILD_DIR)/fbv-$(FBV_VERSION)
|
|
||||||
FBV_CAT:=$(ZCAT)
|
|
||||||
FBV_BINARY:=fbv
|
|
||||||
FBV_TARGET_BINARY:=usr/bin/$(FBV_BINARY)
|
|
||||||
|
|
||||||
$(DL_DIR)/$(FBV_SOURCE):
|
FBV_DEPENDENCIES = libpng jpeg libungif
|
||||||
$(call DOWNLOAD,$(FBV_SITE),$(FBV_SOURCE))
|
|
||||||
|
|
||||||
fbv-source: $(DL_DIR)/$(FBV_SOURCE)
|
#fbv donesn't support cross-compilation
|
||||||
|
define FBV_CONFIGURE_CMDS
|
||||||
$(FBV_DIR)/.unpacked: $(DL_DIR)/$(FBV_SOURCE)
|
|
||||||
$(FBV_CAT) $(DL_DIR)/$(FBV_SOURCE) | tar -C $(BUILD_DIR) $(TAR_OPTIONS) -
|
|
||||||
toolchain/patch-kernel.sh $(FBV_DIR) package/fbv/ \
|
|
||||||
fbv-$(FBV_VERSION)\*.patch fbv-$(FBV_VERSION)\*.patch.$(ARCH)
|
|
||||||
touch $@
|
|
||||||
|
|
||||||
$(FBV_DIR)/.configured: $(FBV_DIR)/.unpacked
|
|
||||||
(cd $(FBV_DIR); rm -f config.cache; \
|
(cd $(FBV_DIR); rm -f config.cache; \
|
||||||
$(TARGET_CONFIGURE_OPTS) \
|
$(TARGET_CONFIGURE_OPTS) \
|
||||||
$(TARGET_CONFIGURE_ARGS) \
|
$(TARGET_CONFIGURE_ARGS) \
|
||||||
@ -30,27 +18,19 @@ $(FBV_DIR)/.configured: $(FBV_DIR)/.unpacked
|
|||||||
--prefix=/usr \
|
--prefix=/usr \
|
||||||
--libs="-lz -lm" \
|
--libs="-lz -lm" \
|
||||||
)
|
)
|
||||||
touch $@
|
endef
|
||||||
|
|
||||||
$(FBV_DIR)/$(FBV_BINARY): $(FBV_DIR)/.configured
|
define FBV_BUILD_CMDS
|
||||||
$(MAKE) $(TARGET_CONFIGURE_OPTS) -C $(FBV_DIR)
|
$(MAKE) $(TARGET_CONFIGURE_OPTS) -C $(@D)
|
||||||
|
endef
|
||||||
|
|
||||||
$(TARGET_DIR)/$(FBV_TARGET_BINARY): $(FBV_DIR)/$(FBV_BINARY)
|
define FBV_INSTALL_TARGET_CMDS
|
||||||
install -D $(FBV_DIR)/$(FBV_BINARY) $(TARGET_DIR)/$(FBV_TARGET_BINARY)
|
install -D $(@D)/fbv $(TARGET_DIR)/usr/bin/fbv
|
||||||
|
endef
|
||||||
|
|
||||||
fbv: libpng jpeg libungif $(TARGET_DIR)/$(FBV_TARGET_BINARY)
|
define FBV_CLEAN_CMDS
|
||||||
|
rm -f $(TARGET_DIR)/usr/bin/fbv
|
||||||
|
-$(MAKE) -C $(@D) clean
|
||||||
|
endef
|
||||||
|
|
||||||
fbv-clean:
|
$(eval $(call AUTOTARGETS,package,fbv))
|
||||||
rm -f $(TARGET_DIR)/$(FBV_TARGET_BINARY)
|
|
||||||
-$(MAKE) -C $(FBV_DIR) clean
|
|
||||||
|
|
||||||
fbv-dirclean:
|
|
||||||
rm -rf $(FBV_DIR)
|
|
||||||
#############################################################
|
|
||||||
#
|
|
||||||
# Toplevel Makefile options
|
|
||||||
#
|
|
||||||
#############################################################
|
|
||||||
ifeq ($(BR2_PACKAGE_FBV),y)
|
|
||||||
TARGETS+=fbv
|
|
||||||
endif
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user