summarylogtreecommitdiffstats
path: root/PKGBUILD
blob: 512221845cd98a9e87374c0f704913cc4be94dcc (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
# Mainintainer : Lucas Rooyakkers <lucas dot rooyakkers at pm dot me>
pkgname=up-git
pkgver=1
pkgrel=4
license=('Apache')
pkgdesc="Ultimate Plumber is a tool for writing Linux pipes with instant live preview"
url="https://github.com/akavel/up"
arch=('x86_64')
provides=('up')
conflicts=('up')
makedepends=('go')
source=("${pkgname}::git+${url}")
sha1sums=('SKIP')

build() {
  cd ${pkgname}
  go build
}

package() {
  cd ${pkgname}
  install -Dm755 "up" "$pkgdir/usr/bin/up"
}