kumquat-buildroot/package/boa/boa.mk
Peter Korsgaard 85fac9e0c8 boa: convert to autotargets
Based on Martin's patch to convert to gentargets.

Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
2010-09-26 21:11:32 +02:00

29 lines
870 B
Makefile

#############################################################
#
# boa
#
#############################################################
BOA_VERSION = 0.94.14rc21
BOA_SOURCE = boa-$(BOA_VERSION).tar.gz
BOA_SITE = http://www.boa.org/
define BOA_INSTALL_TARGET_CMDS
install -D -m 755 $(@D)/src/boa $(TARGET_DIR)/usr/sbin/boa
install -D -m 755 $(@D)/src/boa_indexer $(TARGET_DIR)/usr/lib/boa/boa_indexer
install -D -m 644 package/boa/boa.conf $(TARGET_DIR)/etc/boa/boa.conf
install -D -m 644 package/boa/mime.types $(TARGET_DIR)/etc/mime.types
endef
define BOA_UNINSTALL_STAGING_CMDS
# autotools calls uninstall-staging even if staging install
# isn't enabled
endef
define BOA_UNINSTALL_TARGET_CMDS
rm -rf $(TARGET_DIR)/usr/sbin/boa \
$(TARGET_DIR)/usr/lib/boa/ \
$(TARGET_DIR)/etc/mime.types $(TARGET_DIR)/etc/boa
endef
$(eval $(call AUTOTARGETS,package,boa))