31 lines
556 B
Makefile
31 lines
556 B
Makefile
# $OpenBSD: Makefile,v 1.5 2016/08/13 08:42:22 jasper Exp $
|
|
|
|
COMMENT = wraps git in order to extend it with extra features
|
|
|
|
GH_ACCOUNT = github
|
|
GH_PROJECT = hub
|
|
GH_TAGNAME = v2.2.3
|
|
REVISION= 0
|
|
|
|
CATEGORIES = devel
|
|
|
|
HOMEPAGE = https://hub.github.com
|
|
|
|
MAINTAINER = Fabian Raetz <fabian.raetz@gmail.com>
|
|
|
|
# MIT
|
|
PERMIT_PACKAGE_CDROM = Yes
|
|
|
|
WANTLIB += c pthread
|
|
|
|
MODULES = lang/go
|
|
|
|
MODGO_ENV= PATH="${PORTPATH}" CFLAGS="${CFLAGS}"
|
|
|
|
RUN_DEPENDS = devel/git
|
|
|
|
post-install:
|
|
${INSTALL_MAN} ${WRKSRC}/man/hub.1 ${PREFIX}/man/man1/
|
|
|
|
.include <bsd.port.mk>
|