mirror of
https://git.FreeBSD.org/ports.git
synced 2025-01-14 07:43:06 +00:00
613ae849d7
Differential Revision: https://reviews.freebsd.org/D1667 Approved by: bapt, marino(mentor)
34 lines
712 B
Makefile
34 lines
712 B
Makefile
# Created by: Mark R V Murray <markm@FreeBSD.org>
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= jacal
|
|
PORTVERSION= 1c4
|
|
CATEGORIES= math
|
|
MASTER_SITES= http://groups.csail.mit.edu/mac/ftpdir/scm/
|
|
|
|
MAINTAINER= bofh@FreeBSD.org
|
|
COMMENT= Symbolic mathematics program written in Scheme
|
|
|
|
LICENSE= GPLv3
|
|
|
|
RUN_DEPENDS= scm:${PORTSDIR}/lang/scm \
|
|
${LOCALBASE}/share/slib/require.scm:${PORTSDIR}/lang/slib
|
|
|
|
WRKSRC= ${WRKDIR}/jacal
|
|
|
|
USES= gmake perl5 zip
|
|
NO_BUILD= yes
|
|
|
|
INFO= jacal
|
|
|
|
do-configure:
|
|
cd ${WRKSRC}; \
|
|
${FIND} . -type f -exec ${PERL} -spi -e 's|%%PREFIX%%|${PREFIX}|' {} ';'
|
|
cd ${WRKSRC}; \
|
|
./configure
|
|
|
|
post-install:
|
|
${SED} -i '' -e 's|${STAGEDIR}${PREFIX}|${PREFIX}|g' ${STAGEDIR}${PREFIX}/bin/jacal
|
|
|
|
.include <bsd.port.mk>
|