blob: 84d0ffd69027b41b3cb06b36c91ae4b09b6939c6 (
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
30
31
32
33
34
35
36
37
|
# Created by: nemysis@gmx.ch
# $FreeBSD$
PORTNAME= sets
PORTVERSION= 1.0.0
CATEGORIES= games
MASTER_SITES= http://www.linuxmotors.com/sets/downloads/
EXTRACT_SUFX= .tgz
MAINTAINER= nemysis@gmx.ch
COMMENT= This is an implementation of the sets game
LICENSE= GPLv3
USE_GMAKE= yes
ALL_TARGET= ${PORTNAME}
USE_SDL= sdl image
PLIST_FILES= bin/${PORTNAME}
PORTDOCS= README
NO_STAGE= yes
.include <bsd.port.options.mk>
do-install:
# Executable
${INSTALL_PROGRAM} ${WRKSRC}/${PORTNAME} ${PREFIX}/bin
post-install:
# Documentation
.if ${PORT_OPTIONS:MDOCS}
${MKDIR} ${DOCSDIR}
${INSTALL_DATA} ${WRKSRC}/README ${DOCSDIR}
.endif
.include <bsd.port.mk>
|