blob: 915ec8dfeb30516569b7083f59ae720032b36211 (
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
|
pkgname=headlines-tui-git
pkgver=0.2.3
pkgrel=5
pkgdesc="Interactively view the latest news in your terminal with Rust"
arch=(x86_64)
url="https://gitlab.com/pluskale/headlines"
license=('MIT')
makedepends=(git rustup)
optdepends=()
provides=(headlines)
conflicts=(headlines)
backup=()
options=()
source=("git+$url")
sha256sums=('SKIP')
build() {
cd "headlines"
cargo build --release
}
package() {
cd "headlines/target/release"
install -Dm755 headlines "$pkgdir/usr/bin/headlines"
}
|