blob: 4f226b514a1b509063d8cde8767e576313140d29 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
post_install() {
post_upgrade
}
post_upgrade() {
cd /usr/share/flat-remix-gnome
make
make install
}
pre_remove() {
cd /usr/share/flat-remix-gnome
make uninstall
}
|