mirror of
https://git.FreeBSD.org/ports.git
synced 2024-11-28 01:06:17 +00:00
8928bc850e
- pure object-oriented language - runs on all major platforms - stable core with large test suite - a clean look and feel - good developer tools - low memory footprint It runs under squeak virtual machine. WWW: http://www.pharo-project.org/ PR: ports/167418 Submitted by: mutoh@openedu.org
46 lines
1002 B
Makefile
46 lines
1002 B
Makefile
# New ports collection makefile for: pharo
|
|
# Date created: 26 April 2012
|
|
# Whom: mutoh@openedu.org
|
|
#
|
|
# $FreeBSD$
|
|
#
|
|
|
|
PORTNAME= pharo
|
|
DISTVERSION= 1.4
|
|
CATEGORIES= lang
|
|
MASTER_SITES= https://gforge.inria.fr/frs/download.php/30620/
|
|
DISTNAME= Pharo-${DISTVERSION}-${SVNVERSION}
|
|
EXTRACT_ONLY= Pharo-${DISTVERSION}-${SVNVERSION}.zip
|
|
|
|
MAINTAINER= mutoh@openedu.org
|
|
COMMENT= Pharo is Smalltalk-inspired environment
|
|
|
|
LICENSE= AL2 MIT
|
|
LICENSE_COMB= multi
|
|
|
|
RUN_DEPENDS= squeak:${PORTSDIR}/lang/squeak
|
|
|
|
SVNVERSION= 14438
|
|
|
|
NO_BUILD= yes
|
|
USE_ZIP= yes
|
|
|
|
SHAREMODE= 644
|
|
|
|
DIST_SUBDIR= squeak
|
|
|
|
FILES_DIR= ${WRKDIR}/Pharo-${DISTVERSION}-${SVNVERSION}/
|
|
FILES_TO_INSTALL=Pharo-${DISTVERSION}.image \
|
|
Pharo-${DISTVERSION}.changes \
|
|
PharoV10.sources
|
|
PLIST_FILES= lib/squeak/Pharo-${DISTVERSION}.image \
|
|
lib/squeak/Pharo-${DISTVERSION}.changes \
|
|
lib/squeak/PharoV10.sources
|
|
|
|
do-install:
|
|
.for f in ${FILES_TO_INSTALL}
|
|
(cd ${FILES_DIR} && ${INSTALL_DATA} ${f} ${PREFIX}/lib/squeak/)
|
|
.endfor
|
|
|
|
.include <bsd.port.mk>
|