summarylogtreecommitdiffstats
path: root/PKGBUILD
blob: b0a7b79bd9a83564547e9717f31e56f68437b50a (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
_name=sph-web-app
pkgname=$_name-git
pkgver=145
pkgrel=1
pkgdesc="guile scheme framework for dynamic websites"
arch=(any)
license=(gpl3+)
makedepends=(git)
depends=(guile sph-lib)
provides=($_name)
conflicts=($_name)
source=("git://git.sph.mn/$_name")
url="http://sph.mn"
md5sums=(SKIP)

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

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