#!/usr/bin/bash # JOBoRun : Jwm OpenBox Obarun RUNit # Maintainer : Joe Bo Run # PkgSource : url="https://gittea.disroot.org/joborun-pkg/jobextra/$pkgname" # Website : https://pozol.eu #-----------------------------------------| DESCRIPTION |--------------------------------------- pkgname=wayland-protocols pkgver=1.31 pkgrel=01 pkgdesc='Specifications of extended Wayland protocols' arch=('any') url='https://wayland.freedesktop.org/' makedepends=('wayland' 'meson' 'ninja') #source=("https://wayland.freedesktop.org/releases/$pkgname-$pkgver.tar.xz"{,.sig}) source=("https://gitlab.freedesktop.org/wayland/$pkgname/-/releases/$pkgver/downloads/$pkgname-$pkgver.tar.xz"{,.sig}) prepare() { cd $pkgname-$pkgver # apply patch from the source array (should be a pacman feature) local src for src in "${source[@]}"; do src="${src%%::*}" src="${src##*/}" [[ $src = *.patch ]] || continue echo "Applying patch $src..." patch -Np1 < "../$src" done } build() { meson build $pkgname-$pkgver --buildtype=release --prefix=/usr ninja -C build } check() { ninja -C build test } package() { DESTDIR="$pkgdir" ninja -C build install set -x install -Dt "$pkgdir/usr/share/licenses/$pkgname" -m 644 "$pkgname-$pkgver/COPYING" } #---- license gpg-key sha256sums ---- license=('MIT') validpgpkeys=('8307C0A224BABDA1BABD0EB9A6EEEC9E0136164A' # Jonas Ã…dahl 'A66D805F7C9329B4C5D82767CCC4F07FAC641EFF') # Daniel Stone sha256sums=(a07fa722ed87676ec020d867714bc9a2f24c464da73912f39706eeef5219e238 # wayland-protocols-1.31.tar.xz 3dd0c23e176f7a06a94d29a282ea616b623782b000af8242c769ae02e8543807) # wayland-protocols-1.31.tar.xz.sig