59795cc980
Don't build docs to avoid failures such as http://autobuild.buildroot.net/results/3f1971472fe35a516b0f26ced477d33cb18280c9/ Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
40 lines
811 B
Makefile
40 lines
811 B
Makefile
#
|
|
# libroxml
|
|
#
|
|
|
|
LIBROXML_VERSION = 2.2.1
|
|
LIBROXML_SITE = http://libroxml.googlecode.com/files
|
|
LIBROXML_INSTALL_STAGING = YES
|
|
|
|
define LIBROXML_BUILD_CMDS
|
|
$(MAKE) $(TARGET_CONFIGURE_OPTS) OPTIM= -C $(@D) V=1 all
|
|
endef
|
|
|
|
define LIBROXML_INSTALL_STAGING_CMDS
|
|
$(MAKE) DESTDIR=$(STAGING_DIR) -C $(@D) install
|
|
endef
|
|
|
|
define LIBROXML_INSTALL_TARGET_CMDS
|
|
$(MAKE) DESTDIR=$(TARGET_DIR) -C $(@D) install
|
|
endef
|
|
|
|
define LIBROXML_UNINSTALL_STAGING_CMDS
|
|
$(MAKE) DESTDIR=$(STAGING_DIR) -C $(@D) uninstall
|
|
endef
|
|
|
|
define LIBROXML_UNINSTALL_TARGET_CMDS
|
|
$(MAKE) DESTDIR=$(TARGET_DIR) -C $(@D) uninstall
|
|
endef
|
|
|
|
define LIBROXML_CLEAN_CMDS
|
|
-$(MAKE) -C $(@D) clean
|
|
endef
|
|
|
|
define LIBROXML_DISABLE_DOXYGEN
|
|
$(SED) 's:) doxy:):' $(@D)/Makefile
|
|
endef
|
|
|
|
LIBROXML_POST_PATCH_HOOKS += LIBROXML_DISABLE_DOXYGEN
|
|
|
|
$(eval $(generic-package))
|