opt/libwpe/Pkgfile

20 lines
483 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
2020-04-16 11:40:10 +02:00
version=1.6.0
2019-09-22 11:15:54 +02:00
release=1
source=(https://wpewebkit.org/releases/$name-$version.tar.xz)
build() {
2020-04-16 11:36:55 +02:00
cmake -H$name-$version -Bbuild \
2019-09-22 11:15:54 +02:00
-DCMAKE_BUILD_TYPE=None \
-DCMAKE_INSTALL_PREFIX=/usr \
-DCMAKE_INSTALL_LIBDIR=/usr/lib
2020-04-16 11:36:55 +02:00
cmake --build build
DESTDIR=$PKG cmake --build build --target install
2019-09-22 11:15:54 +02:00
}