devel/sqlite-orm

This commit is contained in:
edshot99 2024-09-17 16:16:04 -05:00
parent 29559c40cf
commit 8c23e8c173
4 changed files with 37 additions and 0 deletions

27
devel-sqlite-orm/Makefile Normal file
View File

@ -0,0 +1,27 @@
COMMENT = SQLite ORM light header only library for modern C++
V = 1.9
PKGNAME = sqlite-orm-${V}
DIST_TUPLE += github fnc12 sqlite_orm v${V} .
CATEGORIES = devel
HOMEPAGE = https://github.com/fnc12/sqlite_orm
MAINTAINER = "Ed <ed@i2pmail.org>"
# AGPLv3 (MIT if purchased)
PERMIT_PACKAGE = Yes
COMPILER = base-clang ports-gcc
MODULES = devel/cmake
BUILD_DEPENDS = devel/cmake
TEST_DEPENDS = devel/catch2
PKG_ARCH = *
.include <bsd.port.mk>

View File

@ -0,0 +1,2 @@
SHA256 (fnc12-sqlite_orm-v1.9.tar.gz) = ovpDPiT2hzqejNndfknS0SZAtFjz9vlBFjz2D2ZzuKI=
SIZE (fnc12-sqlite_orm-v1.9.tar.gz) = 656449

View File

@ -0,0 +1,2 @@
sqlite_orm library allows to create easy data model mappings to your database schema.
It is built to manage (CRUD) objects with a primary key and without it. It also allows you to specify table names and column names explicitly no matter how your classes actually named.

View File

@ -0,0 +1,6 @@
lib/cmake/SqliteOrm/
lib/cmake/SqliteOrm/SqliteOrmConfig.cmake
lib/cmake/SqliteOrm/SqliteOrmConfigVersion.cmake
lib/cmake/SqliteOrm/SqliteOrmTargets.cmake
include/sqlite_orm/
include/sqlite_orm/sqlite_orm.h