15 lines
379 B
Text
Executable file
15 lines
379 B
Text
Executable file
# Description: Extremely fast compression algorithm
|
|
# URL: https://github.com/lz4/lz4
|
|
# Maintainer: Emmett1, emmett1 dot 2miligrams at gmail dot com
|
|
# Depends on:
|
|
|
|
name=lz4
|
|
version=1.9.2
|
|
release=1
|
|
source=(https://github.com/lz4/lz4/archive/v$version/lz4-v$version.tar.gz)
|
|
|
|
build() {
|
|
cd $name-$version
|
|
make PREFIX=/usr
|
|
make DESTDIR=$PKG PREFIX=/usr install
|
|
}
|