blob: 69ba6357bddf98a094da4aa5ca25604ea53420fe (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
post_install() {
cat <<- EOF
:: You need the legit copies of UE1 games you want to play installed.
:: You can either run them from the command line like such:
:: surrealengine /path/to/UE1game
:: Or copy the surrealengine executable into the system folders of the
:: said UE1 games
EOF
}
post_upgrade() {
post_install $1
}
|