summarylogtreecommitdiffstats
path: root/PKGBUILD
blob: e8f49085bc8818dd3444ca31a8e23044510ca741 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
pkgname=sescript-git
pkgver=45
pkgrel=1
pkgdesc="scheme-like s-expression language that translates to ecmascript/javascript"
arch=(any)
license=(gpl3+)
makedepends=(git)
depends=(guile sph-lib)
provides=(sescript)
conflicts=(sescript)
source=("git://git.sph.mn/sescript")
url="http://sph.mn"
md5sums=(SKIP)

pkgver() {
  cd $pkgname
  git rev-list --count HEAD
}

package() {
  cd $pkgname
  ./exe/install --prefix="${pkgdir}"
}