summarylogtreecommitdiffstats
path: root/PKGBUILD
blob: ad25e73d90a121d2e1d15872e694c58eb2442a25 (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
27
28
# Maintainer: XandrCopyrighted <xxandrr@proton.me>

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

source=(
	"https://github.com/XandrCopyrighted/xFetch/releases/download/3.0/xfetch"
	"https://raw.githubusercontent.com/XandrCopyrighted/xFetch/main/LICENSE"
)
sha256sums=(
	'SKIP'
	'SKIP'
)

depends=()
makedepends=()
conflicts=("xfetch")

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