2007-07-23 10:59:10 +02:00
|
|
|
#############################################################
|
|
|
|
#
|
|
|
|
# fbv
|
|
|
|
#
|
|
|
|
#############################################################
|
2007-07-23 14:19:59 +02:00
|
|
|
FBV_VERSION:=1.0b
|
|
|
|
FBV_SOURCE:=fbv-$(FBV_VERSION).tar.gz
|
2007-07-23 10:59:10 +02:00
|
|
|
FBV_SITE:=http://s-tech.elsat.net.pl/fbv
|
|
|
|
|
2010-06-16 13:47:05 +02:00
|
|
|
FBV_DEPENDENCIES = libpng jpeg libungif
|
2007-07-23 10:59:10 +02:00
|
|
|
|
2010-06-16 13:47:05 +02:00
|
|
|
#fbv donesn't support cross-compilation
|
|
|
|
define FBV_CONFIGURE_CMDS
|
2007-09-25 14:34:09 +02:00
|
|
|
(cd $(FBV_DIR); rm -f config.cache; \
|
2007-08-01 10:37:14 +02:00
|
|
|
$(TARGET_CONFIGURE_OPTS) \
|
2007-07-23 14:22:37 +02:00
|
|
|
$(TARGET_CONFIGURE_ARGS) \
|
2007-07-23 10:59:10 +02:00
|
|
|
./configure \
|
|
|
|
--prefix=/usr \
|
|
|
|
--libs="-lz -lm" \
|
2007-08-21 21:20:18 +02:00
|
|
|
)
|
2010-06-16 13:47:05 +02:00
|
|
|
endef
|
2007-07-23 10:59:10 +02:00
|
|
|
|
2010-06-16 13:47:05 +02:00
|
|
|
define FBV_BUILD_CMDS
|
|
|
|
$(MAKE) $(TARGET_CONFIGURE_OPTS) -C $(@D)
|
|
|
|
endef
|
2007-07-23 10:59:10 +02:00
|
|
|
|
2010-06-16 13:47:05 +02:00
|
|
|
define FBV_INSTALL_TARGET_CMDS
|
|
|
|
install -D $(@D)/fbv $(TARGET_DIR)/usr/bin/fbv
|
|
|
|
endef
|
2007-07-23 10:59:10 +02:00
|
|
|
|
2010-06-16 13:47:05 +02:00
|
|
|
define FBV_CLEAN_CMDS
|
|
|
|
rm -f $(TARGET_DIR)/usr/bin/fbv
|
|
|
|
-$(MAKE) -C $(@D) clean
|
|
|
|
endef
|
2007-07-23 10:59:10 +02:00
|
|
|
|
2010-06-16 13:47:05 +02:00
|
|
|
$(eval $(call AUTOTARGETS,package,fbv))
|