summarylogtreecommitdiffstats
path: root/wechat-linux.install
blob: c178a05b02c44d95f62e40d4c8bb89452e07adc4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
post_install() {
    mkdir -p /usr/lib/license
    if [ ! -f /usr/lib/license/libuosdevicea.so ]; then
        touch /usr/lib/license/libuosdevicea.so
    fi
}

post_remove() {
    if [ -f /usr/lib/license/libuosdevicea.so ]; then
        rm /usr/lib/license/libuosdevicea.so
        rmdir /usr/lib/license
    fi
}