summarylogtreecommitdiffstats
path: root/PKGBUILD
blob: 769b75572723d132efcaa55d6c399ccc434f2c63 (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
# Maintainer: Alexander F Rødseth <xyproto@archlinux.org>

pkgname=grumpy
pkgver=0.aa58aa68
pkgrel=1
pkgdesc='Grumpy is a Python to Go source code transcompiler and runtime'
arch=('x86_64' 'i686')
url='https://github.com/google/grumpy'
depends=('go' 'python2')
makedepends=('go' 'python2' 'git')
license=('Apache')
options=('!strip')
source=("git+https://github.com/google/grumpy.git#commit=${pkgver#*.}")
md5sums=('SKIP')

build() {
  make -C grumpy -j2
}

package() {
  DESTDIR="$pkgdir" make -C grumpy install
}

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