707bf5e07d
* Add LICENSE_FILE * Report correct version in .cmake files * Disable static binary and libs * Adjust port Makefile layout to more closely follow Porters Handbook * Disable GNU C/C++ extensions References: https://github.com/albertodemichelis/squirrel/commit/af69eb70844d5830c99d24e671352b2e5e0fe255 PR: 284650
27 lines
506 B
Makefile
27 lines
506 B
Makefile
PORTNAME= squirrel
|
|
DISTVERSIONPREFIX= v
|
|
DISTVERSION= 3.2
|
|
CATEGORIES= lang
|
|
|
|
MAINTAINER= mclay@astate.edu
|
|
COMMENT= High level imperative/OO programming language
|
|
WWW= http://squirrel-lang.org/
|
|
|
|
LICENSE= MIT
|
|
LICENSE_FILE= ${WRKSRC}/COPYRIGHT
|
|
|
|
USES= cmake compiler:c++11-lang
|
|
USE_LDCONFIG= yes
|
|
|
|
USE_GITHUB= yes
|
|
GH_ACCOUNT= albertodemichelis
|
|
|
|
CONFLICTS= squsq
|
|
|
|
CMAKE_OFF= CMAKE_C_EXTENSIONS \
|
|
CMAKE_CXX_EXTENSIONS
|
|
CMAKE_ON= DISABLE_STATIC
|
|
CMAKE_ARGS= -DINSTALL_INC_DIR:STRING=include
|
|
|
|
.include <bsd.port.mk>
|