blob: a47f5b20ad5938a17eea39b33ffc9664fcee9560 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
# Maintainer: Leo <thinkabit.ukim@gmail.com>
pkgname=wmutils
pkgver=1.4
pkgrel=0
pkgdesc="Set of X11 windows manipulation tools"
url="https://github.com/wmutils/core"
arch="all"
license="ISC"
makedepends="libxcb-dev xcb-util-dev"
subpackages="$pkgname-doc"
source="$pkgname-$pkgver.tar.gz::https://github.com/wmutils/core/archive/v${pkgver}.tar.gz"
builddir="$srcdir/core-${pkgver}"
build() {
make
}
package() {
make DESTDIR="$pkgdir" PREFIX=/usr MANPREFIX=/usr/share/man install
}
sha512sums="cdecde223e812494752d877e0e010c0cc7c1ef96e0f9aab7c517f2112f189943c84f958fb2ac4da7068ae2c5e463fe38ec783567ef980d8e63f5d299d746aee9 wmutils-1.4.tar.gz"
|