buildrootschalter/package/fbv/fbv.mk

37 lines
774 B
Makefile
Raw Normal View History

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
FBV_DEPENDENCIES = libpng jpeg libungif
2007-07-23 10:59:10 +02:00
#fbv donesn't support cross-compilation
define FBV_CONFIGURE_CMDS
(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" \
)
endef
2007-07-23 10:59:10 +02:00
define FBV_BUILD_CMDS
$(MAKE) $(TARGET_CONFIGURE_OPTS) -C $(@D)
endef
2007-07-23 10:59:10 +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
define FBV_CLEAN_CMDS
rm -f $(TARGET_DIR)/usr/bin/fbv
-$(MAKE) -C $(@D) clean
endef
2007-07-23 10:59:10 +02:00
$(eval $(call AUTOTARGETS))