summarylogtreecommitdiffstats
path: root/PKGBUILD
blob: 6794bf9f1e090b4513834dcc97c908001e629cd1 (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: XDR <xxdr@duck.com>

pkgname="xfetch-bin"
pkgver=2.1.3
pkgrel=1
pkgdesc="A simple fetch written in Rust."
arch=('x86_64')
url="https://gitlab.com/XDRwastaken/xFetch"
license=('MIT')

source=(
	"https://gitlab.com/XDRwastaken/archived/-/raw/main/xFetch/xfetch_2.1.3.tar.gz"
	"https://gitlab.com/XDRwastaken/xFetch/-/raw/main/LICENSE"
)
sha256sums=(
	'ddcbc869a5570fbd1160140e9a44f6c81061d2c009910064a98ee94814ca144f'
	'SKIP'
)

conflicts=("xfetch")

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