Ajout : fakepkg

This commit is contained in:
Ahurac 2024-04-02 00:40:02 +02:00
parent 83fa5eab5e
commit b796ed03bf

16
bin/fakepkg Executable file
View file

@ -0,0 +1,16 @@
#!/usr/bin/env sh
cd -- "$(mktemp -d)" || exit
temp_dir=$(pwd)
cat > PKGBUILD << EOF
pkgname='$1'
pkgver=0.0.0
pkgrel=1
pkgdesc='Dummy package'
arch=('any')
EOF
makepkg -i
cd .. || exit
rm -r -f -- "$temp_dir"