mirror of
https://github.com/arthur-pbty/arch-custom-iso.git
synced 2026-08-01 20:28:05 +02:00
15 lines
320 B
Bash
15 lines
320 B
Bash
# Maintainer: Ton Nom <ton@email>
|
|
|
|
pkgname=hello-custom
|
|
pkgver=1.0
|
|
pkgrel=1
|
|
pkgdesc="Petit exemple de programme personnalisé à intégrer dans l'ISO"
|
|
arch=('x86_64')
|
|
license=('MIT')
|
|
source=("hello-custom.sh")
|
|
sha256sums=('SKIP')
|
|
|
|
package() {
|
|
install -Dm0755 "$srcdir/hello-custom.sh" "$pkgdir/usr/bin/hello-custom"
|
|
}
|