mirror of
https://github.com/archlinuxarm/PKGBUILDs.git
synced 2024-11-08 22:45:43 +00:00
af027102c3
locale-gen is now called on each update. The update to 2.22-4 broke locales so force an update by raising the pkgrel to 4.1.
22 lines
501 B
Text
22 lines
501 B
Text
infodir=usr/share/info
|
|
filelist=(libc.info{,-1,-2,-3,-4,-5,-6,-7,-8,-9,-10,-11})
|
|
|
|
post_upgrade() {
|
|
#if [[ $(vercmp 2.22-3 $2) = 1 ]]; then
|
|
locale-gen
|
|
#fi
|
|
|
|
ldconfig -r .
|
|
|
|
[[ -x usr/bin/install-info ]] || return 0
|
|
for file in ${filelist[@]}; do
|
|
install-info $infodir/$file.gz $infodir/dir 2> /dev/null
|
|
done
|
|
}
|
|
|
|
pre_remove() {
|
|
[[ -x usr/bin/install-info ]] || return 0
|
|
for file in ${filelist[@]}; do
|
|
install-info --delete $infodir/$file.gz $infodir/dir 2> /dev/null
|
|
done
|
|
}
|