summarylogtreecommitdiffstats
path: root/PKGBUILD
blob: e5a89d5504c29dcf0f83e7f3eef19a697e73d24d (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
26
# Maintainer: XandrCopyrighted (or xxandr, XDR) <xxandrr@proton.me>

pkgname="xfetch-bin"
pkgver=3.5
pkgrel=1
pkgdesc="A simple fetch written in Rust."
arch=('any')
url="https://github.com/XandrCopyrighted/xFetch/"
license=('MIT')

source=(
	"https://codeberg.org/XDR/xFetch/releases/download/3.5/xfetch.tar.gz"
	"https://codeberg.org/XDR/xFetch/raw/branch/main/LICENSE"
)
sha256sums=(
	'SKIP'
	'SKIP'
)

conflicts=("xfetch")

package() {
	cd "$srcdir/"
	install -Dm644 LICENSE "$pkgdir/usr/share/licenses/xfetch/LICENSE"
	install -Dm755 xfetch "${pkgdir}/usr/bin/xfetch"
}