mirror of
https://github.com/arthur-pbty/optifetch.git
synced 2026-08-01 20:29:33 +02:00
22 lines
519 B
Bash
22 lines
519 B
Bash
# Maintainer: Arthur P <contact@arthurp.fr>
|
|
pkgname=optifetch
|
|
pkgver=1.0.0
|
|
pkgrel=1
|
|
pkgdesc="Lightweight system info tool written in C"
|
|
arch=('x86_64')
|
|
url="https://github.com/arthur-pbty/optifetch"
|
|
license=('MIT')
|
|
depends=('glibc')
|
|
makedepends=('gcc' 'make')
|
|
source=("$pkgname-$pkgver.tar.gz::$url/archive/refs/tags/v$pkgver.tar.gz")
|
|
# md5sums=('SKIP') # À remplir si release une version fixe
|
|
|
|
build() {
|
|
cd "$pkgname-$pkgver"
|
|
make
|
|
}
|
|
|
|
package() {
|
|
cd "$pkgname-$pkgver"
|
|
make DESTDIR="$pkgdir/" install
|
|
} |