9a9b588b55
because the old name wasn't accurate - the class libraries are only a fraction of the software. The STEP Class Library (SCL) originated at the National Institute of Standards and Technology, or NIST. NIST started working with STEP in the 80's and continued until the late 90's. Some components of SCL were originally written in Lisp and then re-written in mixed C and C++ in the early 90's. The rest of SCL was written in C++ to begin with. STEPcode (SC) includes the class libraries, some of the most widely used EXPRESS schemas, some tools to work with EXPRESS, and support libraries for those tools. Two of the tools can create schema-specific libraries that are used with the class libraries. There are also some test files and programs. WWW: https://github.com/stepcode/stepcode/wiki PR: 201046 Submitted by: fernando.apesteguia@gmail.com
29 lines
647 B
Makefile
29 lines
647 B
Makefile
# Created by: Fernando Apesteguia <fernando.apesteguia@gmail.com>
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= stepcode
|
|
PORTVERSION= 0.8
|
|
DISTVERSIONPREFIX= v
|
|
CATEGORIES= cad
|
|
|
|
MAINTAINER= fernando.apesteguia@gmail.com
|
|
COMMENT= Generates C++ and Python from ISO10303 files
|
|
|
|
LICENSE= BSD3CLAUSE
|
|
LICENSE_FILE= ${WRKSRC}/COPYING
|
|
|
|
USE_GITHUB= yes
|
|
|
|
USE_LDCONFIG= yes
|
|
|
|
USES= cmake:outsource compiler:c++11-lang
|
|
CMAKE_ARGS+= -DSC_INSTALL_PREFIX=${PREFIX} \
|
|
-DSC_BUILD_TYPE=Release
|
|
|
|
post-install:
|
|
${STRIP_CMD} ${STAGEDIR}${PREFIX}/bin/schema_scanner
|
|
@(cd ${STAGEDIR}${PREFIX} ; \
|
|
${FIND} include \( -type f -or -type l \) | ${SORT} >> ${TMPPLIST})
|
|
|
|
.include <bsd.port.mk>
|