ewm is a tiling window manager for X based on dwm
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
ewm/PKGBUILD

29 lines
898 B

# Maintainer: E. Almqvist <elalmqvist@gmail.com>
pkgname=ewm
pkgver=1.0
pkgrel=1
pkgdesc="Epsilons Window Manager, a tiling window manager based of suckless' dynamic window manager."
arch=('i686' 'x86_64')
url="https://github.com/E-Almqvist/ewm"
license=('GPL-3.0')
depends=('libx11' 'libxinerama' 'libxft' 'freetype2' 'alacritty' 'yajl')
optdepends=('rofi' 'polybar')
options=(zipman)
source=(ewm.desktop)
install=ewm.install
build() {
cd "$srcdir/"
make X11INC=/usr/include/X11 X11LIB=/usr/lib/X11 FREETYPEINC=/usr/include/freetype2
}
package() {
cd "$srcdir"
make PREFIX=/usr DESTDIR="$pkgdir" install
2 years ago
cd "$startdir"
install -Dm644 LICENSE "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
2 years ago
install -Dm644 README.md "$pkgdir/usr/share/doc/$pkgname/README.md"
install -Dm644 ewm.desktop "$pkgdir/usr/share/xsessions/ewm.desktop"
install -Dm755 ewm-start "$pkgdir/usr/local/bin/ewm-start"
}