blob: ed1ebb5509be40877207352cd6dbb66b8c32493b (
plain)
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
|
# Created by: Ben Lavery <ben.lavery@hashbang0.com>
# $FreeBSD$
PORTNAME= bunnysay
PORTVERSION= 1.1
PORTREVISION= 2
DISTVERSIONPREFIX= v
CATEGORIES= games
MAINTAINER= ben.lavery@hashbang0.com
COMMENT= Bunny Sign for terminals with UTF-8 support
LICENSE= GPLv3+
LICENSE_FILE= ${WRKSRC}/LICENSE
USES= compiler:c++11-lang gmake
ALL_TARGET= bunnysay
USE_GITHUB= yes
GH_ACCOUNT= co60ca
PLIST_FILES= bin/bunnysay
post-extract:
@${MV} ${WRKSRC}/makefile ${WRKSRC}/Makefile
do-install:
${INSTALL_PROGRAM} ${WRKSRC}/bunnysay ${STAGEDIR}${PREFIX}/bin/${PORTNAME}
.include <bsd.port.mk>
|