f5c217d224
- Register conflicts with archivers/squsq Squirrel is a high level imperative/OO programming language, designed to be a powerful scripting tool that fits in the size, memory bandwidth, and real-time requirements of applications like games. However Squirrel offers a wide range of features like dynamic typing, delegation, classes & inheritance, higher order functions, generators, coroutines, tail recursion, exception handling, automatic memory management, weak references, etc. Squirrel is inspired by languages like Python, Javascript and especially Lua. The API is very similar and the table code is based on the Lua one. WWW: http://squirrel-lang.org/ Author: Alberto Demichelis <alberto@ademichelis.com>
26 lines
592 B
Makefile
26 lines
592 B
Makefile
# New ports collection makefile for: squsq
|
|
# Date created: 09 May 2003
|
|
# Whom: Alexey Dokuchaev <danfe@regency.nsu.ru>
|
|
#
|
|
# $FreeBSD$
|
|
#
|
|
|
|
PORTNAME= squsq
|
|
PORTVERSION= 3.3
|
|
CATEGORIES= archivers
|
|
MASTER_SITES= NETBSD http://freebsd.nsu.ru/distfiles/
|
|
DISTNAME= t20-squsq-3.3
|
|
|
|
MAINTAINER= ports@FreeBSD.org
|
|
COMMENT= Compressor/decompressor for CP/M "Squeeze" compressed files
|
|
|
|
CONFLICTS= squirrel-[0-9]*
|
|
WRKSRC= ${WRKDIR}/t20-squsq
|
|
MAKEFILE= ${FILESDIR}/Makefile
|
|
|
|
PLIST_FILES= bin/sq bin/usq
|
|
|
|
do-install:
|
|
${INSTALL_PROGRAM} ${WRKSRC}/sq ${WRKSRC}/usq ${PREFIX}/bin/
|
|
|
|
.include <bsd.port.mk>
|