fetchy/PKGBUILD

23 lines
413 B
Bash
Raw Permalink Normal View History

2021-05-03 21:47:06 +02:00
# Maintainer: Јован Ђокић-Шумарац <sumarac@protonmail.com>
2021-05-03 21:47:06 +02:00
pkgname=fetchy-git
2021-05-30 13:26:40 +02:00
pkgver=2.2
2021-05-03 21:47:06 +02:00
pkgrel=1
pkgdesc="Cli system info tool written in C. "
arch=(x86_64)
url="https://gitlab.com/vojjvoda/fetchy.git"
license=('MIT')
makedepends=("make" "git" "gcc")
2021-05-03 21:47:06 +02:00
source=("git+$url")
md5sums=('SKIP')
2021-05-10 08:25:37 +02:00
build() {
cd fetchy
make
2021-05-03 21:47:06 +02:00
}
package() {
cd fetchy
make DESTDIR="$pkgdir" PREFIX="/usr" install
2021-05-03 21:47:06 +02:00
}