blob: 0105a5faa3147b1a0838c25875f64857ebf00128 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
pkgname=proyconwayout-git
pkgver=r63.3e18a3d
pkgrel=3
pkgdesc="Wayout takes text from standard input and outputs it to a desktop-widget on Wayland desktops"
arch=('x86_64')
url="https://git.sr.ht/~proycon/wayout"
license=('GPLV3')
options=("!buildflags")
makedepends=('git' 'meson' 'ninja' 'pkgconf' 'cmake' 'scdoc')
source=("wayout::git+https://git.sr.ht/~proycon/wayout")
md5sums=('SKIP')
pkgver() {
cd wayout
printf "r%s.%s" "$(git rev-list --count HEAD)" "$(git rev-parse --short HEAD)"
}
package(){
cd "$srcdir/wayout"
meson build
ninja -C build
mkdir -p "$pkgdir/usr/bin"
install build/wayout "$pkgdir/usr/bin"
}
|