mirror of
https://gitdl.cn/https://github.com/chakralinux/core.git
synced 2025-01-24 18:42:14 +08:00
30 lines
947 B
Bash
30 lines
947 B
Bash
# $Id: PKGBUILD 62214 2010-01-04 09:19:11Z tpowa $
|
|
# Maintainer: Tobias Powalowski <tpowa@archlinux.org>
|
|
|
|
pkgname=libgssglue
|
|
pkgver=0.1
|
|
pkgrel=3
|
|
pkgdesc="exports a gssapi interface which calls other random gssapi libraries"
|
|
arch=('i686' 'x86_64')
|
|
url="http://www.citi.umich.edu/projects/nfsv4/linux/"
|
|
license=('BSD')
|
|
depends=('glibc')
|
|
makedepends=('pkgconfig' 'autoconf')
|
|
backup=(etc/gssapi_mech.conf)
|
|
options=('!libtool')
|
|
source=(http://www.citi.umich.edu/projects/nfsv4/linux/$pkgname/$pkgname-$pkgver.tar.gz
|
|
gssapi_mech.conf)
|
|
md5sums=('ce1b4c758e6de01b712d154c5c97e540'
|
|
'234b9cca75a33af98eda3f1683756879')
|
|
|
|
build() {
|
|
cd "$srcdir/$pkgname-$pkgver"
|
|
./configure --prefix=/usr
|
|
make || return 1
|
|
make DESTDIR="$pkgdir/" install || return 1
|
|
# Configuration
|
|
install -D -m 644 ../gssapi_mech.conf "$pkgdir/"etc/gssapi_mech.conf
|
|
# install license
|
|
install -D -m644 COPYING $pkgdir/usr/share/licenses/libgssglue/COPYING
|
|
}
|