Add 'ldapvi/' from commit 'e460b6bd036f09f0403b0cf24944b63f3a0c64d1'

git-subtree-dir: ldapvi
git-subtree-mainline: 71ebd5f774
git-subtree-split: e460b6bd03
This commit is contained in:
Anthony Wang 2023-11-11 19:10:36 -05:00
commit 9625adc488
2 changed files with 62 additions and 0 deletions

23
ldapvi/.SRCINFO Normal file
View file

@ -0,0 +1,23 @@
# Generated by mksrcinfo v8
# Mon Apr 3 05:34:32 UTC 2017
pkgbase = ldapvi
pkgdesc = Interactive LDAP client for Unix terminals
pkgver = 1.7.r15.gf1d42ba
pkgrel = 1
url = http://www.lichteblau.com/ldapvi/
arch = i686
arch = x86_64
license = GPL2
makedepends = git
depends = glib2
depends = libldap
depends = libsasl
depends = ncurses
depends = openssl
depends = popt
depends = readline
source = git+http://www.lichteblau.com/git/ldapvi.git#commit=f1d42bad66cc4623d1ff21fbd5dddbf5009d3e40
sha256sums = SKIP
pkgname = ldapvi

39
ldapvi/PKGBUILD Normal file
View file

@ -0,0 +1,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: