blob: d053ebb9cd70bf3b084d377203eb566c88ea9f78 (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
post_install() {
cat <<- EOF
:: You can find a list of libretro cores by searching
:: "libretro" in the Arch Linux User Repository.
:: For example: 'pacaur -s libretro'
EOF
}
post_upgrade() {
post_install $1
}
|