initial import

This commit is contained in:
2025-06-22 20:39:04 -05:00
commit f8a70886f0
3428 changed files with 302546 additions and 0 deletions

View File

@@ -0,0 +1,20 @@
#!/bin/sh
# arg 1: the new package version
post_install() {
librefetch-install install etc/makepkg.conf
}
## arg 1: the new package version
## arg 2: the old package version
post_upgrade() {
if [[ "$(vercmp 20170505 "$2")" -eq 1 ]]; then
echo ":: The archroot format has changed from v3 to v4;"
echo " you will need delete and re-create your chroots."
fi
librefetch-install install etc/makepkg.conf
}
pre_remove() {
librefetch-install remove etc/makepkg.conf
}