| 123456789101112131415161718192021222324252627282930313233343536 |
- # This file is part of the OpenADK project. OpenADK is copyrighted
- # material, please see the LICENCE file in the top-level directory.
- include ${ADK_TOPDIR}/rules.mk
- PKG_NAME:= expat
- PKG_VERSION:= 2.5.0
- PKG_RELEASE:= 1
- PKG_HASH:= ef2420f0232c087801abf705e89ae65f6257df6b7931d37846a193ef2e8cdcbe
- PKG_DESCR:= xml parsing library
- PKG_SECTION:= libs/data
- PKG_NEEDS:= c++
- PKG_URL:= http://expat.sourceforge.net
- PKG_SITES:= https://github.com/libexpat/libexpat/releases/download/R_2_5_0/
- PKG_LIBNAME:= libexpat
- PKG_OPTS:= dev
- include ${ADK_TOPDIR}/mk/host.mk
- include ${ADK_TOPDIR}/mk/package.mk
- $(eval $(call HOST_template,LIBEXPAT,libexpat,${PKG_VERSION}-${PKG_RELEASE}))
- $(eval $(call PKG_template,LIBEXPAT,libexpat,${PKG_VERSION}-${PKG_RELEASE},${PKG_DEPENDS},${PKG_DESCR},${PKG_SECTION},${PKG_OPTS}))
- ifeq ($(ADK_TARGET_USE_STATIC_AND_SHARED_LIBS),y)
- TARGET_CFLAGS:= $(filter-out -static,$(TARGET_CFLAGS))
- TARGET_LDFLAGS:=$(filter-out -static,$(TARGET_LDFLAGS))
- endif
- CONFIGURE_ARGS+= --without-docbook
- libexpat-install:
- ${INSTALL_DIR} ${IDIR_LIBEXPAT}/usr/lib
- ${CP} ${WRKINST}/usr/lib/libexpat.so* ${IDIR_LIBEXPAT}/usr/lib/
- include ${ADK_TOPDIR}/mk/host-bottom.mk
- include ${ADK_TOPDIR}/mk/pkg-bottom.mk
|