This is an attempt to make a DataMapper for GObject. Mostly because I'm sick of doing this by hand in C. It would be cool if it would work across language boundries using GObject Introspection too.
25 lines
726 B
Makefile
25 lines
726 B
Makefile
# $NetBSD: Makefile,v 1.1 2020/04/14 14:13:10 ryoon Exp $
|
|
|
|
DISTNAME= gom-0.4
|
|
CATEGORIES= databases
|
|
MASTER_SITES= ${MASTER_SITE_GNOME:=sources/gom/0.4/}
|
|
EXTRACT_SUFX= .tar.xz
|
|
|
|
MAINTAINER= ryoon@NetBSD.org
|
|
HOMEPAGE= https://wiki.gnome.org/Projects/Gom
|
|
COMMENT= Object mapper from GObjects to SQLite
|
|
LICENSE= gnu-lgpl-v2.1
|
|
|
|
BUILD_DEPENDS+= ${PYPKGPREFIX}-gobject3-[0-9]*:../../devel/py-gobject3
|
|
|
|
USE_LANGUAGES+= c
|
|
USE_TOOLS+= pkg-config
|
|
|
|
PY_PATCHPLIST= yes
|
|
|
|
.include "../../databases/sqlite3/buildlink3.mk"
|
|
.include "../../devel/gobject-introspection/buildlink3.mk"
|
|
.include "../../devel/meson/build.mk"
|
|
.include "../../graphics/gdk-pixbuf2/buildlink3.mk"
|
|
.include "../../lang/python/extension.mk"
|
|
.include "../../mk/bsd.pkg.mk"
|