diff options
author | Joerg Seitter <adk@seitter.net> | 2020-04-19 11:23:38 +0200 |
---|---|---|
committer | Waldemar Brodkorb <wbx@openadk.org> | 2020-04-23 16:28:48 +0200 |
commit | 8c90654756873ecd5796f470523da879cad2c854 (patch) | |
tree | 5d431782a68e242fc708eba7df2b354e40eeab42 /package/forte/Makefile | |
parent | 71ff322ce5bd4b115364156ae190876ba77ad132 (diff) |
new package forte
Signed-off-by: Joerg Seitter <adk@seitter.net>
Diffstat (limited to 'package/forte/Makefile')
-rw-r--r-- | package/forte/Makefile | 37 |
1 files changed, 37 insertions, 0 deletions
diff --git a/package/forte/Makefile b/package/forte/Makefile new file mode 100644 index 000000000..0b39e1ed8 --- /dev/null +++ b/package/forte/Makefile @@ -0,0 +1,37 @@ +# 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 + +# always use tab spaces as separator, no spaces +PKG_NAME:= forte +PKG_VERSION:= 1.12.0 +PKG_RELEASE:= 1 +PKG_HASH:= 65541d5f682c386206f5fdee6a5663c19b3274ee6002b764a0314c49994c280c +PKG_DESCR:= IEC61499 runtime +PKG_SECTION:= libs/misc +PKG_DEPENDS:= libmodbus +#PKG_BUILDDEP:= add packages which need to be compiled +PKG_URL:= https://www.eclipse.org/4diac/ +PKG_SITES:= http://ftp-stud.fht-esslingen.de/pub/Mirrors/eclipse/4diac/releases/1.12/forte/ +DISTFILES:= $(PKG_NAME)-incubation_$(PKG_VERSION).zip +WRKDIST= $(WRKDIR)/$(PKG_NAME)-incubation_$(PKG_VERSION) + +include $(ADK_TOPDIR)/mk/package.mk + + +$(eval $(call PKG_template,FORTE,forte,$(PKG_VERSION)-$(PKG_RELEASE),$(PKG_DEPENDS),$(PKG_DESCR),$(PKG_SECTION))) + +CONFIG_STYLE:= cmake +CMAKE_FLAGS:= -G "Unix Makefiles" -DFORTE_ARCHITECTURE=Posix -DFORTE_COM_ETH=ON -DFORTE_COM_FBDK=ON \ + -DFORTE_COM_LOCAL=ON -DFORTE_TESTS=OFF -DFORTE_MODULE_CONVERT=ON \ + -DFORTE_MODULE_IEC61131=ON -DFORTE_MODULE_UTILS=ON + +# please install all files and directories to the package dir +forte-install: + $(INSTALL_DIR) $(IDIR_FORTE)/usr/bin + $(INSTALL_BIN) $(WRKINST)/usr/bin/forte \ + $(IDIR_FORTE)/usr/bin + +# please remove ALL above comments, before commiting +include $(ADK_TOPDIR)/mk/pkg-bottom.mk |