blob: 5df48a8e9d34ea9b3a53a5b719acfeaf5a152f4a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
#!/bin/bash
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
make DESTDIR=$PKG_DEST install
}
#package () {
#mv $PKG_DEST/usr/local/* $PKG_DEST/usr/
#}
|