# Description: Lockscreen manager for i3 # URL: http://i3wm.org # Packager: Aaron Ball, nullspoon at oper dot io # Depends on: xorg-libxcb, libev, xorg-libx11, libxkbcommon, linux-pam name=i3lock version=2.7 release=1 source=() gitsource='https://github.com/i3/i3lock.git' gitsetup() { if [[ -d ${name} ]]; then cd ${name} git reset --hard git pull ${gitsource} else git clone ${gitsource} ${name} cd ${name} fi git checkout ${version} } build() { # Get the git repo ready gitsetup # Compile make # Install make DESTDIR=$PKG install } # vim: set ft=sh ts=2 et: