desktop/libgsasl/PKGBUILD

28 lines
748 B
Bash
Raw Normal View History

#
# Games Packages for Chakra, part of chakra-project.org
#
# Maintainer: Daniele Cocca <daniele.cocca@gmail.com>
# include global config
source ../_buildscripts/${current_repo}-${_arch}-cfg.conf
pkgname=libgsasl
pkgver=1.6.0
pkgrel=1
pkgdesc="GNU SASL is an implementation of the Simple Authentication and Security Layer framework and a few common SASL mechanisms."
arch=(i686 x86_64)
license=('LGPL')
options=('!libtool' '!emptydirs')
url="http://www.gnu.org/software/gsasl"
source=(ftp://ftp.gnu.org/gnu/gsasl/${pkgname}-${pkgver}.tar.gz)
md5sums=('21efc8a02c4ff4e1326267b8ac16a48f')
build() {
cd "${srcdir}/${pkgname}-${pkgver}"
./configure --prefix=/usr || return 1
make || return 1
make DESTDIR="${pkgdir}" install || return 1
}