blob: c60fe57d4897ff35a30587d554b4a7e8a8205384 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
# Maintainer: Marcel Robitaille <mail@marcelrobitaille.me>
# Maintainer: Aaron Gross <aaron.gross.code@gmail.com>
#
# This PKGBUILD was generated by `cargo aur`: https://crates.io/crates/cargo-aur
pkgname=rust-motd-bin
pkgver=1.1.0
pkgrel=1
pkgdesc="Beautiful, useful MOTD generation with zero runtime dependencies"
url="https://github.com/rust-motd/rust-motd"
license=("MIT")
arch=("x86_64")
provides=("rust-motd")
conflicts=("rust-motd")
source=("https://github.com/rust-motd/rust-motd/releases/download/v$pkgver/rust-motd-$pkgver-archlinux-x86_64.tar.gz")
sha256sums=("1204bbb060a61b7f42df11470f0b813e1c23d6c395e96dd67a2093bf4f830e9b")
package() {
install -Dm755 rust-motd -t "$pkgdir/usr/bin"
install -Dm644 LICENSE "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
}
|