diff --git a/libwpe/.footprint b/libwpe/.footprint new file mode 100644 index 000000000..213712658 --- /dev/null +++ b/libwpe/.footprint @@ -0,0 +1,26 @@ +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/gamepad.h +-rw-r--r-- root/root usr/include/wpe-1.0/wpe/input-xkb.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/libwpe-version.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/process.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.8.1 +-rwxr-xr-x root/root usr/lib/libwpe-1.0.so.1.8.1 +drwxr-xr-x root/root usr/lib/pkgconfig/ +-rw-r--r-- root/root usr/lib/pkgconfig/wpe-1.0.pc diff --git a/libwpe/.signature b/libwpe/.signature new file mode 100644 index 000000000..818e0dba5 --- /dev/null +++ b/libwpe/.signature @@ -0,0 +1,5 @@ +untrusted comment: verify with /etc/ports/contrib.pub +RWSagIOpLGJF3+VS2S+NZ6PQHuqTmZVDEYiHhu+MudRgG9nQ/Y7BtLlfzylf2AFbV5qcZd9EWW1DGnyziLYl1NVDjC+zutZPNg0= +SHA256 (Pkgfile) = 5f980d0e312d25d44afccff7430911147f24e3c1a1a95fec41beceb7337e0c23 +SHA256 (.footprint) = 596a0c2c7219d7b6b6b7e8605f6a3730411899f3308947dcdd9ce241934e9ace +SHA256 (libwpe-1.14.1.tar.xz) = b1d0cdcf0f8dbb494e65b0f7913e357106da9a0d57f4fbb7b9d1238a6dbe9ade diff --git a/libwpe/Pkgfile b/libwpe/Pkgfile new file mode 100644 index 000000000..9f14873f9 --- /dev/null +++ b/libwpe/Pkgfile @@ -0,0 +1,22 @@ +# Description: General-purpose library for WPE WebKit +# URL: https://wpewebkit.org/ +# Maintainer: Tim Biermann, tbier at posteo dot de +# Depends on: libxkbcommon mesa + +name=libwpe +version=1.14.1 +release=1 +source=(https://wpewebkit.org/releases/$name-$version.tar.xz) + +build() { + cmake -S $name-$version -B build -G Ninja \ + -D CMAKE_BUILD_TYPE=Release \ + -D CMAKE_CXX_FLAGS_RELEASE="$CXXFLAGS" \ + -D CMAKE_C_FLAGS_RELEASE="$CFLAGS" \ + -D CMAKE_INSTALL_PREFIX=/usr \ + -D CMAKE_INSTALL_LIBDIR=lib \ + -Wno-dev + + cmake --build build + DESTDIR=$PKG cmake --install build +}