18 lines
431 B
Text
Executable file
18 lines
431 B
Text
Executable file
# Description: Data compression library
|
|
# URL:
|
|
# Maintainer: Emmett1, emmett1 dot 2miligrams at gmail dot com
|
|
# Depends on:
|
|
|
|
name=lzo
|
|
version=2.10
|
|
release=1
|
|
source=(https://www.oberhumer.com/opensource/lzo/download/lzo-$version.tar.gz)
|
|
|
|
build() {
|
|
cd $name-$version
|
|
./configure --prefix=/usr \
|
|
--enable-shared \
|
|
--disable-static
|
|
make
|
|
make DESTDIR=$PKG install
|
|
}
|