diff options
Diffstat (limited to 'sysutils/edid-decode/Makefile')
-rw-r--r-- | sysutils/edid-decode/Makefile | 28 |
1 files changed, 28 insertions, 0 deletions
diff --git a/sysutils/edid-decode/Makefile b/sysutils/edid-decode/Makefile new file mode 100644 index 000000000000..ab706cdb1a9b --- /dev/null +++ b/sysutils/edid-decode/Makefile @@ -0,0 +1,28 @@ +# New ports collection makefile for: edid-decode +# Date created: 05 Jun 2012 +# Whom: Emanuel Haupt <ehaupt@FreeBSD.org> +# +# $FreeBSD$ +# + +PORTNAME= edid-decode +PORTVERSION= 0.1.20120605 +CATEGORIES= sysutils +MASTER_SITES= CRITICAL + +MAINTAINER= ehaupt@FreeBSD.org +COMMENT= Decodes binary EDID information from monitors + +LICENSE= MIT + +MAKE_JOBS_SAFE= yes + +PLIST_FILES= bin/edid-decode + +do-build: + ${CC} ${CFLAGS} ${WRKSRC}/${PORTNAME}.c -o ${WRKSRC}/${PORTNAME} + +do-install: + ${INSTALL_PROGRAM} ${WRKSRC}/${PORTNAME} ${PREFIX}/bin + +.include <bsd.port.mk> |