mirror of
https://github.com/arthur-pbty/arch-custom-iso.git
synced 2026-08-01 20:28:05 +02:00
19 lines
424 B
Bash
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"
|
|
}
|