summarylogtreecommitdiffstats
path: root/PKGBUILD
blob: 6e821a01b7f42a544672e01c922461fa37bb592d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
# Maintainer: Darryl Pogue <darryl@dpogue.ca>

pkgname="gplugin"
pkgver=0.28.1
pkgrel=1
arch=('i868' 'x86_64')
pkgdesc="A GObject based library that implements a reusable plugin system"
license=("LGPL2")
url="https://bitbucket.org/gplugin/gplugin"
depends=("gtk3")
makedepends=("meson"
             "mercurial"
             "gcc"
             "gobject-introspection"
             "pkg-config"
             "help2man"
             "gettext")
options=('strip' '!debug' 'staticlibs')
source=("$pkgname::hg+https://bitbucket.org/$pkgname/$pkgname#tag=v$pkgver")
sha256sums=('SKIP')

build() {
  meson --prefix /usr --buildtype=plain -D perl=false -D python=false -D lua=false -D tcl=false "$srcdir/$pkgname" build
  ninja -C build
}

package() {
  DESTDIR="$pkgdir" ninja -C build install
}