summarylogtreecommitdiffstats
path: root/PKGBUILD
blob: 3f1b7bc567192ffca7f947ca45a2f465fc1605f9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
# Maintainer: Gabriel Guerra <gfranklings@gmail.com>

pkgname='cutefetch'
pkgdesc="A little fetch utility made with bare c and nice performance"
pkgver=0.1.0
pkgrel=1
arch=('any')
url="https://github.com/alphatechnolog/cutefetch"
source=("cutefetch::git+https://github.com/alphatechnolog/cutefetch.git")
makedepends=('clang')
sha256sums=(SKIP)
depends=()

build() {
  cd cutefetch
  make CC=clang
}

package() {
  cd cutefetch
  make DESTDIR="${pkgdir}/usr/bin" install
}