fetchy/PKGBUILD

36 lines
575 B
Bash
Raw Normal View History

2021-05-03 21:47:06 +02:00
# Maintainer: Јован Ђокић-Шумарац <sumarac@protonmail.com>
pkgname=fetchy-git
2021-05-17 19:54:16 +02:00
pkgver=1.3
2021-05-03 21:47:06 +02:00
pkgrel=1
epoch=
pkgdesc="Cli system info tool written in C. "
arch=(x86_64)
url="https://gitlab.com/vojjvoda/fetchy.git"
license=('MIT')
groups=()
depends=()
makedepends=(make)
checkdepends=()
optdepends=()
provides=(fetchy)
2021-05-10 08:25:37 +02:00
conflicts=(fetchy)
2021-05-03 21:47:06 +02:00
replaces=()
backup=()
options=()
install=
changelog=
source=("git+$url")
noextract=()
md5sums=('SKIP')
validpgpkeys=()
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
}