summarylogtreecommitdiffstats
path: root/PKGBUILD
blob: 5ea5b062b9e93e9864530baa1ba88c38528b24dd (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
# Maintainer: Igor Dyatlov <dyatlov.igor@protonmail.com>

pkgname=splash-git
pkgver=r17.d1739db
pkgrel=1
pkgdesc="A Unsplash wallpaper application for GNOME"
arch=('x86_64' 'aarch64')
url="https://gitlab.gnome.org/Bharatkalluri/splash"
license=('GPL3')
depends=('libadwaita')
makedepends=('git' 'meson')
checkdepends=('appstream-glib')
provides=("${pkgname%-git}")
conflicts=("${pkgname%-git}")
source=(
  git+$url.git
  2.patch)
b2sums=('SKIP'
        '1797f930e07b5a97598b951f7539ed86c6d4a21f242e44322d806d7b139ec841a66c5af580c3d308c8ab0b6cfee05e4d64bdd49a61bb4092ee5d2b0724944a87')

pkgver() {
  cd "${pkgname%-git}"
  ( set -o pipefail
    git describe --long 2>/dev/null | sed 's/^v//;s/\([^-]*-g\)/r\1/;s/-/./g' ||
    printf "r%s.%s" "$(git rev-list --count HEAD)" "$(git rev-parse --short HEAD)"
  )
}

prepare() {
  cd "${pkgname%-git}"
  patch -Np1 -i "$srcdir/2.patch"
}

build() {
  arch-meson "${pkgname%-git}" build
  meson compile -C build
}

check() {
  meson test -C build || :
}

package() {
  meson install -C build --destdir "$pkgdir"
}