12345678910111213141516171819 |
- # Description: Light weight window manager for the X11 window system.
- # URL: https://joewing.net/projects/jwm
- # Maintainer: Daniel Azevedo, daniazevedo77 at posteo dot net
- # Depends on: xorg-libxmu xorg-libxinerama xorg-libxpm librsvg
- name=jwm
- version=2.4.6
- release=1
- source=(https://github.com/joewing/jwm/releases/download/v$version/$name-$version.tar.xz)
- build() {
- cd $name-$version
- ./configure --prefix=/usr
- make
- make DESTDIR=$PKG install
- rm -rf $PKG/usr/share/locale/
- }
|