libwpe: initial import

This commit is contained in:
Danny Rawlins 2019-09-22 19:15:54 +10:00
parent b202bc8bd4
commit 407a35344a
3 changed files with 51 additions and 0 deletions

22
libwpe/.footprint Normal file
View File

@ -0,0 +1,22 @@
drwxr-xr-x root/root usr/
drwxr-xr-x root/root usr/include/
drwxr-xr-x root/root usr/include/wpe-1.0/
drwxr-xr-x root/root usr/include/wpe-1.0/wpe/
-rw-r--r-- root/root usr/include/wpe-1.0/wpe/export.h
-rw-r--r-- root/root usr/include/wpe-1.0/wpe/input.h
-rw-r--r-- root/root usr/include/wpe-1.0/wpe/keysyms.h
-rw-r--r-- root/root usr/include/wpe-1.0/wpe/loader.h
-rw-r--r-- root/root usr/include/wpe-1.0/wpe/pasteboard.h
-rw-r--r-- root/root usr/include/wpe-1.0/wpe/renderer-backend-egl.h
-rw-r--r-- root/root usr/include/wpe-1.0/wpe/renderer-host.h
-rw-r--r-- root/root usr/include/wpe-1.0/wpe/version-deprecated.h
-rw-r--r-- root/root usr/include/wpe-1.0/wpe/version.h
-rw-r--r-- root/root usr/include/wpe-1.0/wpe/view-backend.h
-rw-r--r-- root/root usr/include/wpe-1.0/wpe/wpe-egl.h
-rw-r--r-- root/root usr/include/wpe-1.0/wpe/wpe.h
drwxr-xr-x root/root usr/lib/
lrwxrwxrwx root/root usr/lib/libwpe-1.0.so -> libwpe-1.0.so.1
lrwxrwxrwx root/root usr/lib/libwpe-1.0.so.1 -> libwpe-1.0.so.1.2.2
-rwxr-xr-x root/root usr/lib/libwpe-1.0.so.1.2.2
drwxr-xr-x root/root usr/lib/pkgconfig/
-rw-r--r-- root/root usr/lib/pkgconfig/wpe-1.0.pc

5
libwpe/.signature Normal file
View File

@ -0,0 +1,5 @@
untrusted comment: verify with /etc/ports/opt.pub
RWSE3ohX2g5d/b6C85XThTqUKWx6I2zmrYklr87qUOcmlobJRUT45eT0ZiCtaW4crCEUvLyG2x4izfe75SMCmyQAZSd1oUCe0gI=
SHA256 (Pkgfile) = d83f1a7cf823312d0ad79f94b7dd72d524781590bc43170b6553bb5a2656d586
SHA256 (.footprint) = 228364bb1d3f521776dc7562b9981a492fdd1aa186ad6b68cf7aa9314b958c29
SHA256 (libwpe-1.4.0.tar.xz) = e2d3494fc33fe946ad917fd6a3abd127462b91bba62ef8b35507e92f8ede4188

24
libwpe/Pkgfile Normal file
View File

@ -0,0 +1,24 @@
# 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
version=1.4.0
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
}