summarylogtreecommitdiffstats
path: root/PKGBUILD
blob: 76d0730d7348c888d2254e9f423c8b9ed5eb28f2 (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
# Maintainer: GreyXor <greyxor@protonmail.com>
# Contributor: Taran Lynn <taranlynn0gmail.com>

pkgname=swaybg-git
pkgver=r130.eabc06e
pkgrel=1
license=("MIT")
pkgdesc="Wallpaper tool for Wayland compositors (git development version)"
makedepends=(
    'meson'
    "git"
    "scdoc"
    "wayland-protocols"
)
depends=(
    "cairo"
    "gdk-pixbuf2"
    "glib2"
    "glibc"
    "wayland"
)
arch=('x86_64')
url="https://github.com/swaywm/swaybg"
provides=("${pkgname%-git}")
conflicts=("${pkgname%-git}")
source=("${pkgname}::git+https://github.com/swaywm/swaybg.git")
b2sums=('SKIP')

pkgver() {
    # Calculate the version dynamically using git information
    printf "r%s.%s" "$(git -C "$srcdir/${pkgname}" rev-list --count HEAD)" "$(git -C "$srcdir/${pkgname}" rev-parse --short HEAD)"
}

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

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

    install -Dm644 "${pkgname}/LICENSE" "$pkgdir/usr/share/licenses/${pkgname}/LICENSE"
}