suppression des fichiers PKGBUILD et hello-custom.sh pour le paquet hello-custom

This commit is contained in:
Puechberty Arthur
2026-07-29 16:41:00 +02:00
parent 19fec9ca14
commit fb37dc8888
2 changed files with 0 additions and 19 deletions
-14
View File
@@ -1,14 +0,0 @@
# 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"
}
-5
View File
@@ -1,5 +0,0 @@
#!/usr/bin/env bash
set -euo pipefail
echo "Hello from my custom app!"
echo "This binary was built from source and included in the ISO."