summarylogtreecommitdiffstats
path: root/PKGBUILD
blob: 720e1e37d9b135a48c79cecd707b07d3a238d2db (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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
# Maintainer :         Kr1ss $(echo \<kr1ss+x-yandex+com\>|sed s/\+/./g\;s/\-/@/)
# Contributor :        Aniket-Pradhan <aniket17133@iiitd.ac.in>
# Owner/Contributor :  Paul Bergeron https://github.com/dinedal

pkgname=textql-git
_pkgname="${pkgname%-git}"
pkgver() {
  cd "$_pkgname"
  git describe --long | sed 's/\([^-]*-\)g/r\1/;s/-/./g'
}
pkgver=2.0.3.r44.730ab91
pkgrel=2

pkgdesc="Execute SQL against structured text like CSV or TSV"
arch=('x86_64')
url="https://github.com/dinedal/$_pkgname"
license=('MIT')

depends=('go-pie')

options=('!emptydirs' zipman)

source=("git+$url")
sha256sums=('SKIP')

prepare(){
  export GOPATH="$srcdir/gopath"
  mkdir -p "$GOPATH/src/github.com"
  ln -rTsf "$_pkgname" "$GOPATH/src/github.com/$_pkgname"
  cd "$GOPATH/src/github.com/$_pkgname"

  go get -v -d ./...
}

build(){
  export GOPATH="$srcdir/gopath"
  cd "$GOPATH/src/github.com/$_pkgname"

  go build -v -ldflags "-X main.VERSION=`cat VERSION` -s" textql/main.go
}

package() {
  cd "$_pkgname"

  install -Dm755 main                         "$pkgdir/usr/bin/textql"
  install -Dm644 LICENSE                    -t"$pkgdir/usr/share/licenses/$_pkgname/"
  install -Dm644 Readme.md textql_usage.gif -t"$pkgdir/usr/share/doc/$_pkgname/"
  install -Dm644 "man/$_pkgname.1"          -t"$pkgdir/usr/share/man/man1/"
}

# vim: ts=2 sw=2 et ft=PKGBUILD: