1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-12-04 01:48:54 +00:00
freebsd-ports/www/browsh/Makefile
Alexey Dokuchaev 61b6613393 Style: improve ONLY_FOR_ARCHS_REASON (grammar, markup, etc.)
ONLY_FOR_ARCHS_REASON is used as part of the sentence and thus should
start with lower-case letter and not end with a period which is added
by the framework, similar to other knobs like BROKEN, IGNORE, et al.

While here, remove needless quoting, add missing Oxford comma, expand
contractions and jargonisms, use correct spelling for proper names.
2021-10-25 12:58:29 +00:00

41 lines
988 B
Makefile

PORTNAME= browsh
DISTVERSIONPREFIX= v
DISTVERSION= 1.6.4
CATEGORIES= www
MASTER_SITES= https://github.com/browsh-org/browsh/releases/download/${DISTVERSIONFULL}/
DISTNAME= browsh_${DISTVERSION}_freebsd_${ARCH:S/i386/386/}
EXTRACT_SUFX= # none
MAINTAINER= 0mp@FreeBSD.org
COMMENT= Text-based browser supporting HTML5, CSS3, JS, video and WebGL
LICENSE= LGPL21
ONLY_FOR_ARCHS= amd64 armv6 armv7 i386
ONLY_FOR_ARCHS_REASON= upstream does not provide binaries for other architerctures
RUN_DEPENDS= firefox>63:www/firefox
EXTRACT_CMD= ${CP}
EXTRACT_BEFORE_ARGS=
EXTRACT_AFTER_ARGS= ${WRKSRC}
NO_BUILD= yes
NO_WRKSUBDIR= yes
PLIST_FILES= bin/browsh
_ALL_DISTFILES= browsh_${DISTVERSION}_freebsd_386 \
browsh_${DISTVERSION}_freebsd_amd64 \
browsh_${DISTVERSION}_freebsd_armv6 \
browsh_${DISTVERSION}_freebsd_armv7
.if make(makesum)
DISTFILES:= ${_ALL_DISTFILES}
.endif
do-install:
${INSTALL_PROGRAM} ${WRKSRC}/${DISTNAME} ${STAGEDIR}${PREFIX}/bin/browsh
.include <bsd.port.mk>