fetchy/PKGBUILD

42 lines
621 B
Bash
Raw Normal View History

2021-05-03 21:47:06 +02:00
# Maintainer: Јован Ђокић-Шумарац <sumarac@protonmail.com>
pkgname=fetchy-git
2021-05-10 14:05:33 +02:00
pkgver=1.2
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
mkdir -p ${pkgdir}/opt/${pkgname}
cp -rf * ${pkgdir}/opt/${pkgname}
2021-05-10 08:46:46 +02:00
make install
2021-05-03 21:47:06 +02:00
}