diff options
Diffstat (limited to 'toolchain/expat')
-rw-r--r-- | toolchain/expat/Makefile | 28 | ||||
-rw-r--r-- | toolchain/expat/Makefile.inc | 9 |
2 files changed, 37 insertions, 0 deletions
diff --git a/toolchain/expat/Makefile b/toolchain/expat/Makefile new file mode 100644 index 000000000..fedceb2a0 --- /dev/null +++ b/toolchain/expat/Makefile @@ -0,0 +1,28 @@ +# 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 +include Makefile.inc +include ../rules.mk +include ${ADK_TOPDIR}/mk/buildhlp.mk + +$(WRKBUILD)/.configured: + (cd $(WRKBUILD); \ + $(WRKBUILD)/configure \ + --prefix=$(STAGING_HOST_DIR)/usr \ + --enable-static \ + --disable-shared \ + --without-docbook \ + --without-tests \ + ); + touch $@ + +$(WRKBUILD)/.compiled: $(WRKBUILD)/.configured + $(MAKE) ${MPC_MAKEOPTS} -C $(WRKBUILD) all + touch $@ + +$(WRKBUILD)/.installed: $(WRKBUILD)/.compiled + $(MAKE) -C $(WRKBUILD) install + touch $@ + +include ${ADK_TOPDIR}/mk/toolchain.mk diff --git a/toolchain/expat/Makefile.inc b/toolchain/expat/Makefile.inc new file mode 100644 index 000000000..b5b9f8932 --- /dev/null +++ b/toolchain/expat/Makefile.inc @@ -0,0 +1,9 @@ +# This file is part of the OpenADK project. OpenADK is copyrighted +# material, please see the LICENCE file in the top-level directory. + +PKG_NAME:= expat +PKG_VERSION:= 2.7.1 +PKG_RELEASE:= 1 +PKG_HASH:= 0cce2e6e69b327fc607b8ff264f4b66bdf71ead55a87ffd5f3143f535f15cfa2 +PKG_SITES:= https://github.com/libexpat/libexpat/releases/download/R_2_7_1/ +DISTFILES:= ${PKG_NAME}-${PKG_VERSION}.tar.gz |