opt/libwpe/Pkgfile

25 lines
468 B
Plaintext
Raw Normal View History

2019-09-22 11:15:54 +02:00
# Description: General-purpose library for WPE WebKit
# URL: https://wpewebkit.org/
# Maintainer: Danny Rawlins, crux at romster dot me
# Depends on: libxkbcommon mesa3d
name=libwpe
2019-10-26 10:08:04 +02:00
version=1.4.0.1
2019-09-22 11:15:54 +02:00
release=1
source=(https://wpewebkit.org/releases/$name-$version.tar.xz)
build() {
cd $name-$version
mkdir build
cd build
cmake .. \
-DCMAKE_BUILD_TYPE=None \
-DCMAKE_INSTALL_PREFIX=/usr \
-DCMAKE_INSTALL_LIBDIR=/usr/lib
make
make DESTDIR=$PKG install
}