mirror of
https://github.com/archlinuxarm/PKGBUILDs.git
synced 2024-12-08 23:03:46 +00:00
26 lines
307 B
Text
26 lines
307 B
Text
pre_install() {
|
|
/bin/true
|
|
}
|
|
|
|
post_install() {
|
|
echo -- Probably you should install texvc to display math
|
|
/bin/true
|
|
}
|
|
|
|
pre_upgrade() {
|
|
/bin/true
|
|
}
|
|
|
|
post_upgrade() {
|
|
echo -- Probably you should install texvc to display math
|
|
/bin/true
|
|
}
|
|
|
|
pre_remove() {
|
|
/bin/true
|
|
}
|
|
|
|
post_remove() {
|
|
/bin/true
|
|
}
|
|
|