mirror of
https://gitdl.cn/https://github.com/chakralinux/core.git
synced 2025-01-24 18:42:14 +08:00
38 lines
1.1 KiB
Bash
38 lines
1.1 KiB
Bash
#
|
|
# Chakra Packages for Chakra, part of chakra-project.org
|
|
#
|
|
# maintainer (i686): Phil Miller <philm[at]chakra-project[dog]org>
|
|
# maintainer (x86_64): Manuel Tortosa <manutortosa[at]chakra-project[dot]org>
|
|
|
|
pkgname=libgssglue
|
|
pkgver=0.3
|
|
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=('48aaad11b7371ba3270faa322202c038'
|
|
'080be866717e4e06fa6f7d6f43cb395a')
|
|
|
|
build() {
|
|
cd "$srcdir"/$pkgname-$pkgver
|
|
./configure --prefix=/usr
|
|
make
|
|
}
|
|
|
|
package() {
|
|
cd "$srcdir"/$pkgname-$pkgver
|
|
make DESTDIR="$pkgdir/" install
|
|
|
|
# Configuration
|
|
install -Dm644 "$srcdir"/gssapi_mech.conf "$pkgdir/"etc/gssapi_mech.conf
|
|
# install license
|
|
install -Dm644 COPYING "$pkgdir"/usr/share/licenses/libgssglue/COPYING
|
|
}
|