summarylogtreecommitdiffstats
path: root/PKGBUILD
blob: 233f9d272940e9dcf00f249d2ce7597ef01fcaa6 (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
29
# Maintainer: RifsxD <33044977+rifsxd at users dot noreply dot github dot com>

pkgname=kittyfetch
pkgver=2.2.0
pkgrel=2
pkgdesc='Kittyfetch is a cute little and fast tool for fetching info about your system'
arch=('any')
url='https://github.com/rifsxd/kittyfetch'
license=('MIT')
provides=('kittyfetch')
conflicts=('kittyfetch')
depends=('libx11')
makedepends=('make' 'gcc')
source=("git+$url.git")
sha256sums=('SKIP')
validpgpkeys=(
	'SKIP'
)

build() {
  cd "$pkgname/src"
  make clean build
}

package() {
	cd "$pkgname"
	install -D "src/build/$pkgname" -t "$pkgdir/usr/bin/"
	install -Dm644 LICENSE -t "$pkgdir/usr/share/licenses/$pkgname/"
}