Skip to content
PKGBUILD 454 B
Newer Older
Seblu's avatar
Seblu committed
# Maintainer: Sébastien Luttringer
Seblu's avatar
Seblu committed

Seblu's avatar
Seblu committed
pkgname=aurbot-git
pkgver=$(git log -1 --pretty=format:%h)
pkgrel=$(date +%s)
pkgdesc='AUR Builder Bot'
arch=('any')
Seblu's avatar
Seblu committed
url='https://github.com/seblu/aurbot'
license=('GPL2')
Seblu's avatar
Seblu committed
makedepends=('python-distribute')
Seblu's avatar
Seblu committed
depends=('python')
optdepends=('devtools')
Seblu's avatar
Seblu committed

package() {
Seblu's avatar
Seblu committed
  cd "$startdir"
  python setup.py install --root "$pkgdir"
  # ensure rights are corrects
  chmod -R go+rX "$pkgdir/usr"
Seblu's avatar
Seblu committed
}

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