1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-12-21 04:06:46 +00:00
freebsd-ports/Mk/Uses/sqlite.mk
Mathieu Arnold 5d33e04596
framework: Remove $FreeBSD$
Where appropriate fiddle with a few other things.
2021-04-06 16:27:10 +02:00

23 lines
501 B
Makefile

# Provide support for SQLite
# Feature: sqlite
# Usage: USES= sqlite[:version]
# MAINTAINER: ports@FreeBSD.org
.if !defined(_INCLUDE_USES_SQLITE_MK)
_INCLUDE_USES_SQLITE_MK= yes
.if !empty(sqlite_ARGS)
SQLITE_VER= ${sqlite_ARGS}
.endif
SQLITE_VER?= 3
.if ${SQLITE_VER} == 3
LIB_DEPENDS+= libsqlite3.so:databases/sqlite${SQLITE_VER}
.elif ${SQLITE_VER} == 2
LIB_DEPENDS+= libsqlite.so:databases/sqlite${SQLITE_VER}
.else
IGNORE= cannot install: unknown SQLite version: ${SQLITE_VER}
.endif
.endif