mirror of
https://git.FreeBSD.org/ports.git
synced 2024-12-19 03:52:17 +00:00
a8ed171245
Convert a couple to github, and use some options helpers on the way. Sponsored by: Absolight
28 lines
532 B
Makefile
28 lines
532 B
Makefile
# Created by: samu <freebsd-ports@samu.pl>
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= bsdinfo
|
|
PORTVERSION= 0.22
|
|
PORTREVISION= 1
|
|
CATEGORIES= sysutils
|
|
MASTER_SITES= GHC
|
|
|
|
MAINTAINER= freebsd-ports@samu.pl
|
|
COMMENT= Simple utility to display system-based information
|
|
|
|
USE_GITHUB= yes
|
|
GH_ACCOUNT= samupl
|
|
GNU_CONFIGURE= yes
|
|
|
|
OPTIONS_DEFINE= X256
|
|
OPTIONS_DEFAULT=X256
|
|
X256_DESC= Build the 256 color version
|
|
X256_CONFIGURE_ON= --x256
|
|
|
|
PLIST_FILES+= bin/bsdinfo
|
|
|
|
do-install:
|
|
${INSTALL_PROGRAM} ${WRKSRC}/bsdinfo ${STAGEDIR}${PREFIX}/bin
|
|
|
|
.include <bsd.port.mk>
|