300f9c9c9d
Thanks to the pkgparentdir and pkgname functions, we can rewrite the AUTOTARGETS macro in a way that avoids the need for each package to repeat its name and the directory in which it is present. [Peter: pkgdir->pkgparentdir] Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
18 lines
600 B
Makefile
18 lines
600 B
Makefile
#############################################################
|
|
#
|
|
# libhid
|
|
#
|
|
#############################################################
|
|
|
|
LIBHID_VERSION = 0.2.16
|
|
LIBHID_SOURCE = libhid-$(LIBHID_VERSION).tar.gz
|
|
LIBHID_SITE = http://alioth.debian.org/frs/download.php/1958
|
|
LIBHID_DEPENDENCIES = libusb-compat libusb
|
|
LIBHID_INSTALL_STAGING = YES
|
|
# configure runs libusb-config for cflags/ldflags. Ensure it picks up
|
|
# the target version
|
|
LIBHID_CONF_ENV = PATH=$(STAGING_DIR)/usr/bin:$(TARGET_PATH)
|
|
LIBHID_CONF_OPT = --disable-swig --without-doxygen --disable-package-config
|
|
|
|
$(eval $(call AUTOTARGETS))
|