summarylogtreecommitdiffstats
path: root/PKGBUILD
blob: 56c62792713b9ec24d1a4f351b25a5d827aceaaa (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
# Maintainer: Andy Weidenbaum <archbaum@gmail.com>

pkgname=sqawk-git
pkgver=20150128
pkgrel=1
pkgdesc="Like Awk but with SQL and table joins"
arch=('i686' 'x86_64')
depends=('sqlite-tcl' 'tcl' 'tcllib')
makedepends=('git')
url="https://github.com/dbohdan/sqawk"
license=('MIT')
source=(git+https://github.com/dbohdan/sqawk)
sha256sums=('SKIP')

pkgver() {
  cd ${pkgname%-git}
  git log -1 --format="%cd" --date=short | sed "s|-||g"
}

package() {
  cd ${pkgname%-git}

  msg 'Installing license...'
  install -Dm 644 LICENSE "$pkgdir/usr/share/licenses/${pkgname%-git}/LICENSE"

  msg 'Installing documentation...'
  install -dm 755 "$pkgdir/usr/share/doc/${pkgname%-git}"
  cp -dpr --no-preserve=ownership README.md examples "$pkgdir/usr/share/doc/${pkgname%-git}"

  msg 'Installing...'
  install -Dm 755 sqawk.tcl "$pkgdir/usr/bin/sqawk"

  msg 'Cleaning up pkgdir...'
  find "$pkgdir" -type d -name .git -exec rm -r '{}' +
}