#Packager: George Vlahavas pkgname=libwpe pkgver=1.12.0 pkgrel=1gv source=("https://wpewebkit.org/releases/libwpe-$pkgver.tar.xz") docs=("readme" "install" "copying" "changelog" "authors" "news" "todo") url=https://wpewebkit.org slackdesc=\ ( #|-----handy-ruler------------------------------------------------------| "libwpe (General-purpose library for WPE WebKit)" "WPE is the reference WebKit port for embedded and low-consumption" "computer devices. It has been designed from the ground-up with" "performance, small footprint, accelerated content rendering, and" "simplicity of deployment in mind, bringing the excellence of the" "WebKit engine to countless platforms and target devices." ) build() { cd $startdir/src/$pkgname-$pkgver mkdir build cd build cmake \ -DCMAKE_C_FLAGS:STRING="$SLKCFLAGS" \ -DCMAKE_CXX_FLAGS:STRING="$SLKCFLAGS" \ -DCMAKE_INSTALL_PREFIX=/usr \ -DCMAKE_BUILD_TYPE=Release \ .. make -j $numjobs || return 1 make install DESTDIR=$startdir/pkg }