summarylogtreecommitdiffstats
path: root/PKGBUILD
blob: c3d96a0828cfe61df41ced993edfb35cb0954e91 (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
28
29
30
# Maintainer: Kyle <kyle@free2.ml>
pkgname=kies-git
_gitname=Kies
pkgver=0.0 # determined from git origin
pkgrel=1
pkgdesc="the menu system for creation of a text-only desktop type environment, git version"
arch=('any')
url="https://github.com/f123/Kies"
license=('GPL3')
depends=('lynx')
optdepends=()
makedepends=('git')
provides=()
conflicts=()
install=$pkgname.install
source=('git+https://github.com/f123/Kies.git')
md5sums=('SKIP')

pkgver() {
  cd $_gitname
  # Use the tag of the last commit
  git describe --always | sed -e 's|v||' -e 's|-|.|g'
}

package() {
  cd $_gitname
  ./install.sh --prefix=/usr --destdir="$pkgdir/"
}

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