blob: 17c404bf0f08dd121895369e2da71baa6f8be895 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
#!/bin/bash
DEPS=(glibc)
SOURCE=https://www.oberhumer.com/opensource/lzo/download/lzo-2.10.tar.gz
DESC="Portable lossless data compression library"
build () {
./configure --prefix=/usr --disable-static --enable-shared --docdir=/usr/share/doc/lzo-2.10
make
}
package() {
make DESTDIR=$PKG_DEST install
}
|