opt/woff2/Pkgfile
2018-04-02 15:09:29 +10:00

25 lines
534 B
Plaintext

# Description: Web Open Font Format 2 reference implementation
# URL: https://github.com/google/woff2
# Maintainer: Danny Rawlins, crux at romster dot me
# Depends on: brotli ninja
name=woff2
version=1.0.2
release=1
source=(https://github.com/google/$name/archive/v$version/$name-v$version.tar.gz)
build() {
cd $name-$version
install -d $SRC/build
cd $SRC/build
cmake $SRC/$name-$version \
-G Ninja \
-DCMAKE_INSTALL_PREFIX="/usr" \
-DCMAKE_INSTALL_LIBDIR="/usr/lib"
ninja -j ${JOBS-1}
DESTDIR="$PKG" ninja install
}