blob: 7d1948fd8314c12aed5264333763b00ebeb7601d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
# 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' 'git')
license=("gpl")
sha256sums=(SKIP)
depends=()
build() {
cd cutefetch
make CC=clang
}
package() {
cd cutefetch
make DESTDIR="${pkgdir}/usr/bin" install
}
|