blob: 5b43dd2e281a4673ec4f3a7ebef53335136f3109 (
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
|
# Maintainer: Tudor Roman <tudurom@gmail.com>
pkgname=windowchef
pkgver=0.5.2
pkgrel=1
pkgdesc="A stacking window manager that cooks windows with orders from the Waitron"
arch=("i686" "x86_64" "armv7h" "aarch64")
url="https://github.com/tudurom/windowchef"
license=('ISC')
depends=("libxcb" "xcb-util-wm" "xcb-util-keysyms")
optdepends=("sxhkd" "wmutils-git" "lemonbar")
makedepends=("xorgproto")
conflicts=('windowchef-git')
source=("https://github.com/tudurom/$pkgname/archive/v${pkgver}.tar.gz")
md5sums=("48f5ac7ad99a5f0cc47097680a4922a8")
build() {
cd "$pkgname-$pkgver"
make
}
package() {
cd "$pkgname-$pkgver"
make PREFIX="/usr" DESTDIR="$pkgdir/" install
}
|