blob: ce285170e9d58181feb43d5a5a24ae1f1488a14a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
pkgname=ldapbrowse
pkgver=0.6
pkgrel=1
pkgdesc="An ncurses-based ldapbrowser"
arch=('i686' 'x86_64')
url="http://github.com/david0/ldapbrowse"
license=('GPL')
depends=('ncurses' 'libldap')
source=("$pkgname-$pkgver.tar.gz::https://github.com/david0/${pkgname}/archive/v${pkgver}.tar.gz")
md5sums=('705ef4fba10e8a82fe69a771aa25c9e7')
build() {
cd "${srcdir}/${pkgname}-${pkgver}/src"
make
}
package() {
cd "${srcdir}/${pkgname}-${pkgver}/src"
install -d "${pkgdir}"/usr/bin/
install ldapbrowse "${pkgdir}"/usr/bin/ldapbrowse
}
|