summarylogtreecommitdiffstats
path: root/PKGBUILD
blob: 37318a399f1c44783f9d301050a20a9e5a5bf086 (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
# Maintainer: Peter Kaplan <peter@pkap.de>
pkgname=stacktile
pkgver=1.0.0
pkgrel=1
pkgdesc="Layout generator for the river Wayland compositor"
arch=('x86_64')
url="https://sr.ht/~leon_plickat/stacktile/"
license=('GPL3')
makedepends=('git' 'wayland')
conflicts=('stacktile-git')
options=('!buildflags')
source=("git+https://git.sr.ht/~leon_plickat/stacktile#tag=v$pkgver")
sha256sums=('SKIP')

build() {
    cd "$pkgname"
    make
}

package() {
    cd "$pkgname"
    make DESTDIR="$pkgdir" PREFIX="/usr" install 
    install -Dm644 LICENSE -t "$pkgdir/usr/share/licenses/$pkgname"
}