blob: 432f373493e46101bf13da52e43fbd0a772bd38c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
post_upgrade() {
if [ $(vercmp $2 143-3) -lt 0 ]; then cat << EOF
********************************************************************************
* With v142 release, Ares has changed its build system from GNU Make to CMake *
* making the build process more flexible. *
* Furthermore, Retro shaders, which were recently included in Ares upstream, *
* are bundled off to 'libretro-shaders' package, which is now a dependency. *
* This allows 70%-75% reduction of Ares package's size compared to v141. *
********************************************************************************
EOF
fi
}
|