summaryrefslogblamecommitdiff
path: root/user/lua-lgi/APKBUILD
blob: 857fa26be7a3f855585729eedeaa4392f9f0f160 (plain) (tree)


































                                                                                                                                                               
# Contributor: Natanael Copa <ncopa@alpinelinux.org>
# Maintainer: Dan Theisen <djt@hxx.in>
pkgname=lua-lgi
pkgver=0.9.2
pkgrel=0
pkgdesc="Dynamic Lua binding to GObject libraries using GObject-Introspection"
url="https://github.com/pavouk/lgi"
arch="all"
license="MIT"
options="!check" # checks require dbus
depends=""
makedepends="glib-dev gobject-introspection-dev libffi-dev"
subpackages="$pkgname-doc"
source="lgi-$pkgver.tar.gz::https://github.com/pavouk/lgi/archive/$pkgver.tar.gz"

builddir="$srcdir"/lgi-$pkgver
build() {
	cd "$builddir"
	make PREFIX=/usr LUA_CFLAGS="$(pkg-config --cflags lua)"
}

check() {
        cd "$builddir"
	make -C "$srcdir"/build-$_i check
}

package() {
	cd "$builddir"
	make install PREFIX=/usr DESTDIR="$pkgdir"
	
	mkdir -p "$pkgdir"/usr/share/doc/lua-lgi
	cp -r docs/* samples "$pkgdir"/usr/share/doc/lua-lgi/
}

sha512sums="755a96b78530f42da6d4e2664f8e37cb07a356419e7e6448003c3f841c9d98ad18b851715d9eb203ea7eb27b13ec46223fa8a1c90a99fd12960ce85b0a695335  lgi-0.9.2.tar.gz"