summarylogtreecommitdiffstats
path: root/PKGBUILD
blob: 8f443a6e066ea43176bede659a2dac299b0af45c (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
# Maintainer: Ian Brunelli <ian@brunelli.me>

pkgname=wofi
pkgver=1.1.2
pkgrel=1
pkgdesc="Rofi-like wlroots launcher"
arch=('x86_64')
url="https://hg.sr.ht/~scoopta/wofi"
license=('GPL3')
depends=('wayland' 'gtk3')
makedepends=('meson')
conflicts=('wofi-hg')
source=("${pkgname}-v${pkgver}.tar.gz::https://hg.sr.ht/~scoopta/wofi/archive/v${pkgver}.tar.gz")
# We have to SKIP the validity check to avoid an issue with hg.sr.ht:
# https://todo.sr.ht/~sircmpwn/hg.sr.ht/33
sha256sums=('SKIP')

build() {
    cd "${pkgname}-v${pkgver}"
    meson build
    ninja -C build
}

package() {
    mkdir -p "${pkgdir}/usr/bin/" "${pkgdir}"/usr/share/man/man{1,3,5,7}
    install -D -m755 ${pkgname}-v${pkgver}/build/wofi "${pkgdir}/usr/bin/"
    install -D -m644 ${pkgname}-v${pkgver}/man/*.1 "${pkgdir}/usr/share/man/man1/"
    install -D -m644 ${pkgname}-v${pkgver}/man/*.3 "${pkgdir}/usr/share/man/man3/"
    install -D -m644 ${pkgname}-v${pkgver}/man/*.5 "${pkgdir}/usr/share/man/man5/"
    install -D -m644 ${pkgname}-v${pkgver}/man/*.7 "${pkgdir}/usr/share/man/man7/"
}