summarylogtreecommitdiffstats
path: root/PKGBUILD
blob: df448701b5a979799fe1f511da836b29af8e69a0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
# Maintainer: oxod <me@oxod.nl>

# This file is automatically generated. Do not edit.

pkgname=cppfetch
pkgver=0.1.4
source=(cppfetch-0.1.4.tar.gz::https://github.com/oxodx/cppfetch/archive/0.1.4.tar.gz https://raw.githubusercontent.com/oxodx/cppfetch/main/LICENSE.md)
sha1sums=(SKIP SKIP)
# This PKGBUILD is not a full PKGBUILD
# pkgname, pkgver, source, and sha1sums are to be generated
pkgdesc="A system fetch tool made in cpp"
pkgrel=0
arch=(x86_64)
license=(MIT)
url="https://github.com/oxodx/cppfetch"
makedepends=(glibc make)

build() {
  cd "$srcdir"/cppfetch-"$pkgver"
  make build
}

package() {
  cd "$srcdir"/cppfetch-"$pkgver"
  install -Dm755 bin/cppfetch "$pkgdir"/usr/bin/cppfetch
  install -Dm644 LICENSE.md "$pkgdir"/usr/share/"$pkgname"/LICENSE.md
}