summarylogtreecommitdiffstats
path: root/PKGBUILD
blob: 916d9b31834f604207b7bd80dedbf2792248ae84 (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
# Maintainer: Mantas Mikulėnas <grawity@gmail.com>

pkgname=ldapvi
pkgver=1.7.r15.gf1d42ba
pkgrel=1
pkgdesc="Interactive LDAP client for Unix terminals"
url="http://www.lichteblau.com/ldapvi/"
license=(GPL2)
arch=(i686 x86_64)
depends=(glib2 libldap libsasl ncurses openssl popt readline)
#source=("http://www.lichteblau.com/download/$pkgname-$pkgver.tar.gz")
#sha256sums=('6f62e92d20ff2ac0d06125024a914b8622e5b8a0a0c2d390bf3e7990cbd2e153')
makedepends=(git)
_commit=f1d42bad66cc4623d1ff21fbd5dddbf5009d3e40
source=("git+http://www.lichteblau.com/git/$pkgname.git#commit=$_commit")
sha256sums=(SKIP)

pkgver() {
  cd "$pkgname"
  git describe --tags | sed 's/-/.r/; s/-/./'
}

prepare() {
  cd "$pkgname/$pkgname"
  ./autogen.sh
}

build() {
  cd "$pkgname/$pkgname"
  ./configure --prefix=/usr
  make
}

package() {
  cd "$pkgname/$pkgname"
  make DESTDIR="$pkgdir" install
}

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