opt/brotli/Pkgfile

24 lines
446 B
Plaintext
Raw Normal View History

2018-04-02 07:06:55 +02:00
# Description: Brotli compression library
# URL: https://github.com/google/brotli
# Maintainer: Danny Rawlins, crux at romster dot me
# Depends on: cmake
name=brotli
2019-05-23 13:56:26 +02:00
version=1.0.7
2018-04-02 07:06:55 +02:00
release=1
source=(https://github.com/google/$name/archive/v$version/$name-v$version.tar.gz)
build() {
cd $name-$version
2019-05-23 13:56:26 +02:00
mkdir build
cd build
2018-04-02 07:06:55 +02:00
2019-05-23 13:56:26 +02:00
cmake .. \
2018-04-02 07:06:55 +02:00
-DCMAKE_INSTALL_PREFIX="/usr" \
-DCMAKE_INSTALL_LIBDIR="/usr/lib"
make
make DESTDIR=$PKG install
}