The cirros image was rebuilt against the 3.13.0-83 kernel, drivers e1000e, igbvf...
[packages/trusty/cirros-testvm.git] / cirros-testvm / src-cirros / buildroot-2015.05 / package / avrdude / avrdude.mk
1 ################################################################################
2 #
3 # avrdude
4 #
5 ################################################################################
6
7 AVRDUDE_VERSION = eabe067c4527bc2eedc5db9288ef5cf1818ec720
8 AVRDUDE_SITE = $(call github,kcuzner,avrdude,$(AVRDUDE_VERSION))
9 AVRDUDE_LICENSE = GPLv2+
10 AVRDUDR_LICENSE_FILES = avrdude/COPYING
11 AVRDUDE_SUBDIR = avrdude
12 # Sources coming from git, without generated configure and Makefile.in
13 # files.
14 AVRDUDE_AUTORECONF = YES
15 AVRDUDE_DEPENDENCIES = elfutils libusb libusb-compat ncurses \
16         host-flex host-bison
17 AVRDUDE_LICENSE = GPLv2+
18 AVRDUDE_LICENSE_FILES = avrdude/COPYING
19
20 ifeq ($(BR2_PACKAGE_LIBFTDI1),y)
21 AVRDUDE_DEPENDENCIES += libftdi1
22 else ifeq ($(BR2_PACKAGE_LIBFTDI),y)
23 AVRDUDE_DEPENDENCIES += libftdi
24 endif
25
26 # if /etc/avrdude.conf exists, the installation process creates a
27 # backup file, which we do not want in the context of Buildroot.
28 define AVRDUDE_REMOVE_BACKUP_FILE
29         $(RM) -f $(TARGET_DIR)/etc/avrdude.conf.bak
30 endef
31
32 AVRDUDE_POST_INSTALL_TARGET_HOOKS += AVRDUDE_REMOVE_BACKUP_FILE
33
34 $(eval $(autotools-package))