mirror of
https://gitdl.cn/https://github.com/chakralinux/core.git
synced 2025-02-09 18:57:48 +08:00
24 lines
581 B
Bash
24 lines
581 B
Bash
pkgname=librpcsecgss
|
|
pkgver=0.19
|
|
pkgrel=11
|
|
pkgdesc="Library for RPCSECGSS support"
|
|
arch=('x86_64')
|
|
url="http://www.citi.umich.edu/projects/nfsv4/linux/"
|
|
license=('GPL')
|
|
depends=('glibc' 'krb5' 'libgssglue')
|
|
makedepends=('pkg-config' 'autoconf')
|
|
options=('!libtool')
|
|
source=("http://www.citi.umich.edu/projects/nfsv4/linux/${pkgname}/${pkgname}-${pkgver}.tar.gz")
|
|
md5sums=('b45ed565bdc3099023aa35830ec92997')
|
|
|
|
build() {
|
|
cd "${srcdir}/${pkgname}-${pkgver}"
|
|
./configure --prefix=/usr
|
|
make
|
|
}
|
|
|
|
package() {
|
|
cd "${srcdir}/${pkgname}-${pkgver}"
|
|
make DESTDIR="$pkgdir/" install
|
|
}
|