Files
arch-custom-iso/custom-pkgs/optifetch/PKGBUILD
T

19 lines
424 B
Bash

# Maintainer: Ton Nom <ton@email>
pkgname=optifetch
pkgver=1.0
pkgrel=1
pkgdesc='Version personnalisée de fastfetch intégrée dans l\'ISO'
arch=('x86_64')
url='https://example.com/ton-projet'
license=('MIT')
depends=('gcc' 'make')
source=("optifetch::git+https://github.com/arthur-pbty/optifetch.git")
sha256sums=('SKIP')
pkg() {
cd "$srcdir/optifetch"
make
install -Dm0755 optifetch "$pkgdir/usr/bin/optifetch"
}