blob: e99d590350f67b58b14f39c65ea841e2432a04c1 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
# Maintainer: Mike Simpson <oatbar@mikesimps.aleeas.com>
pkgname='oatbar'
pkgver=0.1.0
pkgrel=1
pkgdesc='Powerful and customizable DE and WM status bar'
arch=('x86_64')
url="https://oatbar.app/"
license=('Apache-2.0')
depends=('pango' 'cairo' 'libxcb' 'pkgconf')
makedepends=('cargo')
provides=('oatbar-desktop' 'oatbar-keyboard' 'oatbar-stats' 'oatctl')
source=("$pkgname-$pkgver.tar.gz::https://static.crates.io/crates/$pkgname/$pkgname-$pkgver.crate")
sha256sums=('SKIP')
package() {
export RUSTUP_TOOLCHAIN=stable
cargo install --no-track --all-features --locked --root "$pkgdir/usr/" --path ./$pkgname-$pkgver
}
|