summarylogtreecommitdiffstats
path: root/PKGBUILD
blob: de566f4f1757bc43a6f1cce9e12a9715fbaac016 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
# Maintainer: mutantmonkey <aur@mutantmonkey.in>
pkgname=dex-git
_gitname=dex
pkgver=48.21a763e
pkgrel=2
pkgdesc="A program to execute DesktopEntry files of type Application, primarily for window managers that do not implement the Freedesktop autostart specification"
url="https://github.com/jceb/dex"
arch=('any')
license=('GPL2')
depends=('python')
makedepends=('git')
provides=('dex')
conflicts=('dex')
source=('git+https://github.com/jceb/dex.git')
sha256sums=('SKIP')

pkgver() {
  cd $_gitname
  echo $(git rev-list --count master).$(git rev-parse --short master)
}

package() {
  cd $_gitname
  install -m755 -D dex $pkgdir/usr/bin/dex
}

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