head	1.1;
access;
symbols
	pkgsrc-2026Q1:1.1.0.8
	pkgsrc-2026Q1-base:1.1
	pkgsrc-2025Q4:1.1.0.6
	pkgsrc-2025Q4-base:1.1
	pkgsrc-2025Q3:1.1.0.4
	pkgsrc-2025Q3-base:1.1
	pkgsrc-2025Q2:1.1.0.2
	pkgsrc-2025Q2-base:1.1;
locks; strict;
comment	@# @;


1.1
date	2025.05.20.16.48.21;	author schmonz;	state Exp;
branches;
next	;
commitid	NICmKxneDqoynFVF;


desc
@@


1.1
log
@Add git-sqlite: Git diff and merge driver for SQLite

git-sqlite is a collection of shell scripts that allows a sqlite
database to be tracked using the git version control system.

It can be used on an existing database, however, UUIDs will make
multi-master distribution substantially easier.
@
text
@# $NetBSD$

DISTNAME=		git-sqlite-0.1
CATEGORIES=		databases
MASTER_SITES=		${MASTER_SITE_GITHUB:=cannadayr/}
GITHUB_TAG=		v${PKGVERSION_NOREV}

MAINTAINER=		schmonz@@NetBSD.org
HOMEPAGE=		https://github.com/cannadayr/git-sqlite/
COMMENT=		Git diff and merge driver for SQLite
LICENSE=		mit

DEPENDS+=		git-base-[0-9]*:../../devel/git-base
DEPENDS+=		sqlite3-[0-9]*:../../databases/sqlite3
DEPENDS+=		sqlite3-diff-[0-9]*:../../databases/sqlite3-diff

USE_LANGUAGES=		# none
GNU_CONFIGURE=		yes
USE_TOOLS+=		autoreconf autoconf automake bash:run

REPLACE_BASH=		src/util.sh src/*.in

INSTALLATION_DIRS=	share/doc/${PKGBASE}

pre-configure:
	cd ${WRKSRC} && ${CONFIG_SHELL} ./reconf

post-install:
	${INSTALL_DATA} ${WRKSRC}/README.md ${DESTDIR}${PREFIX}/share/doc/${PKGBASE}

.include "../../mk/bsd.pkg.mk"
@
