#!/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 20160609 "$2")" -eq 1 ]]; then
		echo ":: To keep using old chroots, you may need to manually run"
		echo "   systemd-machine-id-setup --root=/path/to/chroot"
	fi
	librefetch-install install etc/makepkg.conf
}

pre_remove() {
	librefetch-install remove etc/makepkg.conf
}