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>
27 lines
795 B
Makefile
27 lines
795 B
Makefile
#############################################################
|
|
#
|
|
# libosip2
|
|
#
|
|
#############################################################
|
|
LIBOSIP2_VERSION = 3.3.0
|
|
LIBOSIP2_SOURCE = libosip2_$(LIBOSIP2_VERSION).orig.tar.gz
|
|
LIBOSIP2_PATCH = libosip2_$(LIBOSIP2_VERSION)-1.diff.gz
|
|
LIBOSIP2_SITE = $(BR2_DEBIAN_MIRROR)/debian/pool/main/libo/libosip2
|
|
LIBOSIP2_INSTALL_STAGING = YES
|
|
|
|
ifneq ($(LIBOSIP2_PATCH),)
|
|
define LIBOSIP2_DEBIAN_PATCHES
|
|
if [ -d $(@D)/debian/patches ]; then \
|
|
(cd $(@D)/debian/patches && for i in *; \
|
|
do $(SED) 's,^\+\+\+ .*cvs-$(LIBOSIP2_VERSION)/,+++ cvs-$(LIBOSIP2_VERSION)/,' $$i; \
|
|
done; \
|
|
); \
|
|
support/scripts/apply-patches.sh $(@D) $(@D)/debian/patches \*; \
|
|
fi
|
|
endef
|
|
endif
|
|
|
|
LIBOSIP2_POST_PATCH_HOOKS += LIBOSIP2_DEBIAN_PATCHES
|
|
|
|
$(eval $(call AUTOTARGETS))
|