summarylogtreecommitdiffstats
path: root/hqdfm-wine.install
blob: 49d40a99b50378b4b7ec4255024a2b1d72b8937c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
info() {
    echo -e "Wine 华秋 DFM 是一款高效的 PCB 设计软件,一键分析设计隐患,提供优化方案,输出 Gerber、BOM、坐标文件,让设计和制造更简单。"
}
post_install() {
    info
}
post_upgrade() {
    echo "deleting the hqdfm bottle..."
    find /home -maxdepth 2 -name ".hqdfm" -exec rm -rf {} \;
    info
}
pre_remove() {
    echo "deleting the hqdfm bottle..."
    find /home -maxdepth 2 -name ".hqdfm" -exec rm -rf {} \;
}