Date: Thursday, April 6, 2023 @ 13:34:33
Author: felixonmars
Revision: 1438927
archrelease: copy trunk to community-staging-any
Added:
blueprint-compiler/repos/community-staging-any/
blueprint-compiler/repos/community-staging-any/PKGBUILD
(from rev 1438925, blueprint-compiler/trunk/PKGBUILD)
----------+
PKGBUILD | 22 ++++++++++++++++++++++
1 file changed, 22 insertions(+)
Copied: blueprint-compiler/repos/community-staging-any/PKGBUILD (from rev
1438925, blueprint-compiler/trunk/PKGBUILD)
===================================================================
--- community-staging-any/PKGBUILD (rev 0)
+++ community-staging-any/PKGBUILD 2023-04-06 13:34:33 UTC (rev 1438927)
@@ -0,0 +1,22 @@
+# Maintainer:
+
+pkgname=blueprint-compiler
+pkgver=0.6.0
+pkgrel=2
+pkgdesc='A markup language for GTK user interfaces'
+url='https://jwestman.pages.gitlab.gnome.org/blueprint-compiler/'
+license=(LGPL)
+arch=(any)
+depends=(python-gobject)
+makedepends=(meson)
+source=(https://gitlab.gnome.org/jwestman/blueprint-compiler/-/archive/v$pkgver/blueprint-compiler-v$pkgver.tar.gz)
+sha256sums=('c9e3652b66803c1de6a24b71f4fa4638b32260b4b04b93c2f3d958e1ce2a175e')
+
+build() {
+ arch-meson $pkgname-v$pkgver build
+ meson compile -C build
+}
+
+package() {
+ meson install -C build --destdir "$pkgdir"
+}