summarylogtreecommitdiffstats
path: root/PKGBUILD
blob: 364bc2785681f1f3ca7118456280422bd86f7504 (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
# Maintainer: Folke H. 'joru' Gleumes <folke-aur@gleumes.org>
# This file is automatically generated. Do not edit.

pkgver=200.78e6f81
pkgname=kickoff-git
_pkgname=kickoff
pkgrel=1
pkgdesc="A simple and uncomplicated program launcher for wayland"
makedepends=('git' 'cargo' 'cmake' 'freetype2' 'fontconfig')
conflicts=(kickoff)
arch=('x86_64')
url="https://github.com/j0ru/kickoff"
license=('GPL3')
source=("git+https://github.com/j0ru/kickoff.git")
sha512sums=('SKIP')

pkgver() {
	cd "${_pkgname}"
	echo $(git rev-list --count HEAD).$(git rev-parse --short HEAD)
}

build() {
	cd "${_pkgname}"
	cargo build --release --locked --all-features --target-dir=target
}


package() {
	cd "${_pkgname}"
	install -Dm 755 target/release/${_pkgname} -t "${pkgdir}/usr/bin"
}