Commit 2278a676 authored by Seblu's avatar Seblu
Browse files

Remove awesome-revelation-git

parent 53a42e2a
Loading
Loading
Loading
Loading

awesome-revelation-git/PKGBUILD

deleted100644 → 0
+0 −38
Original line number Diff line number Diff line
# $Id: PKGBUILD 72016 2012-06-05 19:54:42Z seblu $
# Maintainer: Sébastien Luttringer <seblu@aur.archlinux.org>

pkgname=awesome-revelation-git
pkgver=20120614
pkgrel=1
pkgdesc='Show all clients per screen in Awesome window manager'
arch=('any')
url='https://github.com/bioe007/awesome-revelation'
license=('GPL3')
depends=('awesome')
conflicts=('awesome-revelation')
source=()
md5sums=()

_gitroot=https://github.com/bioe007/awesome-revelation.git
_gitname=awesome-revelation

build() {
  msg "Connecting to GIT server...."

  if [[ -d "$_gitname" ]]; then
    cd "$_gitname" && git pull origin
    msg "The local files are updated."
  else
    git clone "$_gitroot" "$_gitname"
  fi
}

package() {
  cd $_gitname
  # Install the library
  install -Dm644 init.lua "$pkgdir/usr/share/awesome/lib/revelation/init.lua"
  # Install documentation
  install -Dm644 README.md "$pkgdir/usr/share/doc/$pkgname/README"
}

# vim:set ts=2 sw=2 ft=sh et: