summarylogtreecommitdiffstats
path: root/PKGBUILD
blob: d843a84dbd709284bc440dad0f3a03b73d4aa34a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
pkgname=fetch-git
_pkgname=fetch
pkgver=2.0.0
pkgrel=1
pkgdesc="An animated 3D fetch tool for your terminal"
arch=(x86_64 aarch64)
url="https://github.com/areofyl/fetch"
license=('ISC')
depends=('glibc')
source=("https://github.com/areofyl/fetch/archive/refs/tags/v${pkgver}.tar.gz")
sha256sums=('SKIP')

build() {
  cd "${_pkgname}-${pkgver}"
  make CC=cc CFLAGS="${CFLAGS}"
}

package() {
  cd "${_pkgname}-${pkgver}"
  make PREFIX="${pkgdir}/usr" install
}