25 lines
905 B
Bash
25 lines
905 B
Bash
# Maintainer: Jesus E. <heckyel@riseup.net>
|
|
|
|
pkgname=libwnck3
|
|
_pkgname=libwnck
|
|
pkgver=3.36.0
|
|
pkgrel=2
|
|
pkgdesc="Library to manage X windows and workspaces (via pagers, tasklists, etc.)"
|
|
url='https://gitlab.gnome.org/GNOME/libwnck'
|
|
arch=('i686' 'x86_64')
|
|
license=('LGPL-2')
|
|
depends=('gtk' 'startup-notification' 'libxres' 'mesa-libgl')
|
|
makedepends=('gobject-introspection' 'meson' 'gettext-tiny')
|
|
source=("${pkgname}-${pkgver}.tar.xz::https://deb.debian.org/debian/pool/main/libw/libwnck3/libwnck3_${pkgver}.orig.tar.xz")
|
|
sha512sums=('b7bf5d935327f61634a898594cf20a270e1b403c8df6c74e6ac20e22eea2845ac8c3007b31994728b74953e40c1015373efe10ed64243cf5e85fd210654aecb3')
|
|
|
|
build() {
|
|
hyperbola-meson ${_pkgname}-${pkgver} build -D gtk_doc=false
|
|
ninja -C build
|
|
}
|
|
|
|
package() {
|
|
DESTDIR="$pkgdir" meson install -C build
|
|
install -Dm644 "${_pkgname}-${pkgver}"/COPYING -t "$pkgdir"/usr/share/licenses/$pkgname
|
|
}
|