buildrootschalter/package/udpcast/udpcast.mk

31 lines
879 B
Makefile
Raw Normal View History

################################################################################
2008-03-28 03:54:42 +01:00
#
# udpcast
#
################################################################################
UDPCAST_VERSION = 20120424
UDPCAST_SITE = http://www.udpcast.linux.lu/download
UDPCAST_CONF_ENV = $(if $(BR_LARGEFILE),ac_cv_type_stat64=yes,ac_cv_type_stat64=no)
UDPCAST_DEPENDENCIES = host-m4
2008-03-28 03:54:42 +01:00
define UDPCAST_REMOVE_UDP_SENDER
2008-03-28 03:54:42 +01:00
rm -f $(TARGET_DIR)/usr/sbin/udp-sender
rm -f $(TARGET_DIR)/usr/sbin/udp-sender.1
endef
ifneq ($(BR2_PACKAGE_UDPCAST_SENDER),y)
UDPCAST_POST_INSTALL_TARGET_HOOKS += UDPCAST_REMOVE_UDP_SENDER
2008-03-28 03:54:42 +01:00
endif
define UDPCAST_REMOVE_UDP_RECEIVER
2008-03-28 03:54:42 +01:00
rm -f $(TARGET_DIR)/usr/sbin/udp-receiver
rm -f $(TARGET_DIR)/usr/sbin/udp-receiver.1
endef
2008-03-28 03:54:42 +01:00
ifneq ($(BR2_PACKAGE_UDPCAST_RECEIVER),y)
UDPCAST_POST_INSTALL_TARGET_HOOKS += UDPCAST_REMOVE_UDP_RECEIVER
2008-03-28 03:54:42 +01:00
endif
$(eval $(autotools-package))