blob: 8cb4491361301d2dc03740c58b3f19a144059c65 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
#!/bin/bash
DEPS=(gmp)
SOURCE=https://github.com/cyrusimap/cyrus-sasl/releases/download/cyrus-sasl-2.1.27/cyrus-sasl-2.1.27.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/
#}
|