blob: 661bdde857239b5f278d2dd5115b6e817cebc467 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
|
# Created by: Edwin Groothuis <edwin@mavetju.org>
# $FreeBSD$
PORTNAME= fxsudoku
PORTVERSION= 0.5.1
PORTREVISION= 24
CATEGORIES= games
MASTER_SITES= http://www.fifthplanet.net/files/
MAINTAINER= edwin@mavetju.org
COMMENT= An implementation of the Sudoku game
LIB_DEPENDS= FOX-1.6:${PORTSDIR}/x11-toolkits/fox16
USE_BZIP2= yes
USE_GMAKE= yes
PLIST_FILES= bin/fxsudoku
NO_STAGE= yes
post-extract:
${CP} ${FILESDIR}/config.freebsd ${WRKSRC}/build
do-build:
cd ${WRKSRC} && MAKE=${GMAKE} ./gb
do-install:
cd ${WRKSRC} && MAKE=${GMAKE} ./gb install --prefix=${PREFIX}
.include <bsd.port.mk>
|