#!/bin/bash

MAKEDEPS=(make )
DEPS=(gmp)

PKG_VER=2.1.27
SOURCE=https://github.com/cyrusimap/cyrus-sasl/releases/download/cyrus-sasl-$PKG_VER/cyrus-sasl-$PKG_VER.tar.gz
DESC="A library for Simple Authentication and Security Layer"

build () {
    ./configure \
            --prefix=/usr
    make
}

package () {
    make DESTDIR=$PKG_DEST install 
}