summarylogtreecommitdiffstats
path: root/PKGBUILD
blob: 73c48cb9a7143f23917bf6b9e7b126fff865b7ac (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
pkgname="eidolon"
pkgver=1.4.0
pkgrel=1
pkgdesc="Provides a single TUI-based registry for drm-free, wine and steam games on linux, accessed through a rofi launch menu."
arch=('any')
url="https://github.com/nicohman/eidolon"
license=('GPL')
makedepends=(rust cargo)
depends=(rofi)
conflicts=(eidolon-git)
source=("https://github.com/nicohman/eidolon/archive/${pkgver}.tar.gz")
sha256sums=('1e19206871d840cbcad67a79bdf75b06396e505fbb2939b657af369ccef86773')

package() {
	cd ${pkgname}-${pkgver}
	cargo build --release
	install -d -m 755 ${pkgdir}/usr/bin
	cp target/release/eidolon ${pkgdir}/usr/bin/eidolon
}