mirror of
https://github.com/godotengine/buildroot.git
synced 2026-01-05 14:09:53 +03:00
Also remove the redundant $(call ...).
This is a purely mechanical change, performed with
find package linux toolchain boot -name \*.mk | \
xargs sed -i -e 's/$(eval $(call GENTARGETS))/$(eval $(generic-package))/' \
-e 's/$(eval $(call AUTOTARGETS))/$(eval $(autotools-package))/' \
-e 's/$(eval $(call CMAKETARGETS))/$(eval $(cmake-package))/'
Signed-off-by: Arnout Vandecappelle (Essensium/Mind) <arnout@mind.be>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
21 lines
583 B
Makefile
21 lines
583 B
Makefile
#############################################################
|
|
#
|
|
# argus
|
|
#
|
|
#############################################################
|
|
ARGUS_VERSION:=3.0.0.rc.34
|
|
ARGUS_SOURCE:=argus_$(ARGUS_VERSION).orig.tar.gz
|
|
ARGUS_PATCH:=argus_$(ARGUS_VERSION)-1.diff.gz
|
|
ARGUS_SITE:=$(BR2_DEBIAN_MIRROR)/debian/pool/main/a/argus/
|
|
ARGUS_DEPENDENCIES=libpcap
|
|
|
|
define ARGUS_DEBIAN_PATCH_APPLY
|
|
if [ -d $(@D)/debian/patches ]; then \
|
|
support/scripts/apply-patches.sh $(@D) $(@D)/debian/patches \*.patch; \
|
|
fi
|
|
endef
|
|
|
|
ARGUS_POST_PATCH_HOOKS += ARGUS_DEBIAN_PATCH_APPLY
|
|
|
|
$(eval $(autotools-package))
|