[arch-commits] Commit in (lgi lgi/repos lgi/trunk lgi/trunk/PKGBUILD)

Jelle van der Waa jelle at gemini.archlinux.org
Sat Jan 22 11:07:40 UTC 2022


    Date: Saturday, January 22, 2022 @ 11:07:39
  Author: jelle
Revision: 1113419

extra2community: Moving lgi from extra to community

Added:
  lgi/
  lgi/repos/
  lgi/trunk/
  lgi/trunk/PKGBUILD

----------+
 PKGBUILD |   47 +++++++++++++++++++++++++++++++++++++++++++++++
 1 file changed, 47 insertions(+)

Added: lgi/trunk/PKGBUILD
===================================================================
--- lgi/trunk/PKGBUILD	                        (rev 0)
+++ lgi/trunk/PKGBUILD	2022-01-22 11:07:39 UTC (rev 1113419)
@@ -0,0 +1,47 @@
+# Maintainer: Levente Polyak <anthraxx[at]archlinux[dot]org>
+# Contributor: speps <speps at aur dot archlinux dot org>
+# Contributor: Sébastien Luttringer
+
+pkgbase=lgi
+pkgname=('lua53-lgi')
+pkgver=0.9.2
+pkgrel=4
+pkgdesc='Lua bindings for gnome/gobject using gobject-introspection library'
+url='https://github.com/pavouk/lgi'
+arch=('x86_64')
+license=('MIT')
+depends=('glibc' 'glib2' 'libffi' 'lua53' 'gobject-introspection-runtime')
+makedepends=('gobject-introspection')
+replaces=('lgi')
+conflicts=('lgi' 'lua-lgi')
+source=(${pkgbase}-${pkgver}.tar.gz::https://github.com/pavouk/lgi/archive/${pkgver}.tar.gz)
+sha512sums=('755a96b78530f42da6d4e2664f8e37cb07a356419e7e6448003c3f841c9d98ad18b851715d9eb203ea7eb27b13ec46223fa8a1c90a99fd12960ce85b0a695335')
+
+build() {
+  cd ${pkgbase}-${pkgver}
+  CFLAGS="$CFLAGS -I/usr/include/lua5.3" make
+}
+
+check() {
+  cd ${pkgbase}-${pkgver}
+  # TODO: fix cairo-gobject dependency
+  # make check
+}
+
+package_lua53-lgi() {
+  cd ${pkgbase}-${pkgver}
+  make \
+    LUA_LIBDIR=/usr/lib/lua/5.3 \
+    LUA_SHAREDIR=/usr/share/lua/5.3 \
+    DESTDIR="${pkgdir}/" install
+
+  install -Dm 755 tools/dump-typelib.lua "${pkgdir}/usr/bin/dump-typelib"
+
+  install -Dm 644 README.md -t "${pkgdir}/usr/share/doc/${pkgname}"
+  install -Dm 644 docs/* -t "${pkgdir}/usr/share/doc/${pkgname}"
+  install -Dm 644 samples/*.lua -t "${pkgdir}/usr/share/${pkgname}/samples"
+  install -Dm 644 samples/gtk-demo/* -t "${pkgdir}/usr/share/${pkgname}/samples/gtk-demo"
+  install -Dm 644 LICENSE -t "${pkgdir}/usr/share/licenses/${pkgname}"
+}
+
+# vim: ts=2 sw=2 et:



More information about the arch-commits mailing list