summarylogtreecommitdiffstats
path: root/PKGBUILD
blob: 5fa91bce5268b21e84aed4364f1f1ad71ddedab4 (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
pkgname=tclln
pkgver=0.9
pkgrel=1
pkgdesc="TclLN is a library for integrating a tcl-shell with custom commands"
url="https://github.com/TestudoAquatilis/tclln"
arch=('x86_64' 'i686' 'armv7h')
license=('LGPLv3')
depends=('tcl' 'glib2')
optdepends=()
makedepends=('git' 'gcc' 'make')
conflicts=()
replaces=()
backup=()
#install='foo.install'
source=("git+https://github.com/TestudoAquatilis/tclln.git")
md5sums=('SKIP')

build () {
  cd "${pkgname}"
  make lib
}

package() {
  cd "${srcdir}/${pkgname}"
  install -Dm744 libtclln.so "$pkgdir/usr/lib/libtclln.so"
  install -Dm644 tclln.pc "$pkgdir/usr/lib/pkgconfig/tclln.pc"
  install -Dm644 tclln.h "$pkgdir/usr/include/tclln.h"
}

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