blob: c9a0e4e7b13bd06a2e746fce5d8e5f55042fef08 (
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
|
# Created by: ijliao
# $FreeBSD$
PORTNAME= grabc
PORTVERSION= 1.1
PORTREVISION= 4
CATEGORIES= x11
MASTER_SITES= http://muquit.com/muquit/software/grabc/
DISTNAME= ${PORTNAME}${PORTVERSION}
MAINTAINER= mmokhi@FreeBSD.org
COMMENT= Grab a color from screen
LICENSE= GPLv2 # specified on the website
PLIST_FILES= bin/grabc
USE_XORG= x11
CFLAGS+= -I${LOCALBASE}/include
LIBS+= -L${LOCALBASE}/lib -lX11
do-build:
cd ${WRKSRC} && ${CC} ${CFLAGS} -o ${PORTNAME} ${PORTNAME}.c ${LIBS}
do-install:
${INSTALL_PROGRAM} ${WRKSRC}/${PORTNAME} ${STAGEDIR}${PREFIX}/bin
.include <bsd.port.mk>
|