31 lines
574 B
Makefile
31 lines
574 B
Makefile
# $OpenBSD: Makefile,v 1.5 2016/09/06 15:37:53 jeremy Exp $
|
|
|
|
VERSION = 0.10
|
|
|
|
COMMENT = interactive shell for git
|
|
|
|
DISTNAME = gitsh-${VERSION}
|
|
REVISION = 0
|
|
|
|
CATEGORIES = devel
|
|
|
|
HOMEPAGE = https://github.com/thoughtbot/gitsh
|
|
|
|
MAINTAINER = Mike Burns <mike+openbsd@mike-burns.com>
|
|
|
|
# License: BSD
|
|
PERMIT_PACKAGE_CDROM = Yes
|
|
|
|
WANTLIB += c
|
|
|
|
MASTER_SITES = https://github.com/thoughtbot/gitsh/releases/download/v${VERSION}/
|
|
|
|
MODULES = lang/ruby
|
|
RUN_DEPENDS = devel/git
|
|
|
|
SEPARATE_BUILD = Yes
|
|
CONFIGURE_STYLE = gnu
|
|
CONFIGURE_ENV = RUBY="${RUBY}"
|
|
|
|
.include <bsd.port.mk>
|