blob: 5a2f015c234f736dbaf1ea78a51c914b9e374f96 (
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: Kushagra Sharma <tda@thedarkartist.in>
pkgname=tda
pkgver=1.1.0
pkgrel=1
pkgdesc="A simple rust program to put 'TheDarkArtist' to the console"
arch=('x86_64')
url="https://github.com/TheDarkArtist/tda"
license=('MIT')
depends=(
'git'
)
makedepends=('git')
source=("${pkgname}-${pkgver}.tar.gz::https://github.com/TheDarkArtist/tda/archive/v${pkgver}.tar.gz")
sha256sums=('SKIP')
build() {
cd "$pkgname-$pkgver"
cargo build --release --locked
}
package() {
cd "$pkgname-$pkgver"
install -Dm755 "target/release/$pkgname" -t "$pkgdir/usr/bin/"
}
|