blob: 8db4d8174582011f0f60e75062e9313e0f519fba (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
post_install() {
cat <<- EOF
=======================+========================
Start r2kd by running ``systemctl start r2kd``
To configure r2k you need to edit config.h
And rerun the pkgbuild using ``makepkg -scif``
Wayland support can be disabled and wayland libs
uninstalled by disabling them in config.h
=======================+========================
EOF
}
post_upgrade() {
post_install $1
}
|