7423c7fd5f
and an installer script matlab-2012a-installer, which automates the somewhat tricky process of installing Linux Matlab. It requires installation media and a license file from Mathworks, Inc. PR: ports/177724 Submitted by: Jason Bacon
31 lines
640 B
Makefile
31 lines
640 B
Makefile
# Created by: Jason Bacon
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= matlab-R2012a-installer
|
|
PORTVERSION= 0.1
|
|
CATEGORIES= math science java
|
|
MASTER_SITES= http://acadix.biz/Ports/distfiles/ \
|
|
http://personalpages.tds.net/~jwbacon/Ports/distfiles/
|
|
|
|
MAINTAINER= jwbacon@tds.net
|
|
COMMENT= Mathworks(r) Matlab installation tool
|
|
|
|
USE_LINUX= yes
|
|
USE_LINUX_APPS= ncurses-base
|
|
USE_JAVA= yes
|
|
JAVA_VERSION= 1.6+
|
|
JAVA_OS= linux
|
|
JAVA_RUN= yes
|
|
|
|
NO_BUILD= yes
|
|
SUB_FILES= pkg-message
|
|
PLIST_FILES= bin/${PORTNAME}
|
|
|
|
do-install:
|
|
${MKDIR} ${PREFIX}/bin
|
|
${INSTALL_SCRIPT} ${WRKSRC}/${PORTNAME} ${PREFIX}/bin
|
|
|
|
post-install:
|
|
@${CAT} ${WRKDIR}/pkg-message
|
|
|
|
.include <bsd.port.mk>
|