mirror of
https://gitdl.cn/https://github.com/chakralinux/desktop.git
synced 2025-01-24 02:22:13 +08:00
34 lines
772 B
Bash
34 lines
772 B
Bash
#
|
|
# Games Packages for Chakra, part of chakra-project.org
|
|
#
|
|
# Maintainer: Daniele Cocca <daniele.cocca@gmail.com>
|
|
|
|
pkgname=libgsasl
|
|
pkgver=1.6.0
|
|
pkgrel=3
|
|
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')
|
|
depends=('libidn')
|
|
options=('!libtool' '!emptydirs')
|
|
depends=('libidn')
|
|
categories=('games')
|
|
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
|
|
make
|
|
}
|
|
|
|
package() {
|
|
cd "${srcdir}/${pkgname}-${pkgver}"
|
|
|
|
make DESTDIR="${pkgdir}" install
|
|
}
|
|
|
|
# vim:set ts=2 sw=2 et:
|