OSX, Linux and Windows machines. Main idea behind using Go for backend development is to utilize ability of the compiler to produce zero-dependency binaries for multiple platforms. Pgweb was created as an attempt to build very simple and portable application to work with local or remote PostgreSQL databases. WWW: https://github.com/sosedoff/pgweb
20 lines
354 B
Makefile
20 lines
354 B
Makefile
# $FreeBSD$
|
|
|
|
PORTNAME= pgweb
|
|
DISTVERSIONPREFIX= v
|
|
DISTVERSION= 0.11.5
|
|
CATEGORIES= databases www
|
|
PKGNAMEPREFIX= go-
|
|
|
|
MAINTAINER= miwi@FreeBSD.org
|
|
COMMENT= Pgweb is a web-based database browser for PostgreSQL
|
|
|
|
LICENSE= MIT
|
|
|
|
USES= go
|
|
USE_GITHUB= yes
|
|
GH_ACCOUNT= sosedoff
|
|
GO_PKGNAME= github.com/sosedoff/pgweb
|
|
PLIST_FILES= bin/pgweb
|
|
|
|
.include <bsd.port.mk>
|