forked from Lainports/freebsd-ports
DB Browser for SQLite is a light GUI editor for SQLite databases, built on top of Qt. The main goal of the project is to allow non-technical users to create, modify and edit SQLite databases using a set of wizards and a spreadsheet-like interface. This project has previous been known as "SQLite Browser" and "Database Browser for SQLite". "DB Browser for SQLite" will hopefully be the name that sticks. :) WWW: http://sqlitebrowser.org/ PR: 196365 Submitted by: coder@tuxfamily.org
26 lines
581 B
Makefile
26 lines
581 B
Makefile
# Created by: loïc bartoletti <coder@tuxfamily.org>
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= sqlitebrowser
|
|
PORTVERSION= 3.4.0
|
|
CATEGORIES= databases
|
|
|
|
MAINTAINER= coder@tuxfamily.org
|
|
COMMENT= DB Browser for SQLite is a visual tool to manage SQLite databases
|
|
|
|
LICENSE= MPL GPLv3
|
|
LICENSE_COMB= dual
|
|
|
|
WRKSRC= ${WRKDIR}/${PORTNAME}-${PORTNAME}-${GH_COMMIT}
|
|
|
|
USE_GITHUB=
|
|
GH_ACCOUNT= sqlitebrowser
|
|
GH_COMMIT= 0358faa
|
|
GH_TAGNAME= ${GH_COMMIT}
|
|
|
|
USES= cmake desktop-file-utils
|
|
USE_QT4= gui qmake_build linguist_build moc_build uic_build rcc_build
|
|
USE_SQLITE= yes
|
|
|
|
INSTALLS_ICONS= yes
|
|
.include <bsd.port.mk>
|