summarylogtreecommitdiffstats
path: root/post.install
blob: 0890f658d18a34cadbd4f6fccbfb40f487da4880 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
# For DEV9 netplay support
post_install()
{
  setcap 'CAP_NET_RAW+eip CAP_NET_ADMIN+eip' /usr/bin/pcsx2-qt

  cd /usr/share/PCSX2/resources
  sudo curl -O -L https://github.com/PCSX2/pcsx2_patches/releases/download/latest/cheats_ni.zip
  sudo curl -O -L https://github.com/PCSX2/pcsx2_patches/releases/download/latest/cheats_ws.zip
}

post_upgrade()
{
  setcap 'CAP_NET_RAW+eip CAP_NET_ADMIN+eip' /usr/bin/pcsx2-qt
  cd /usr/share/PCSX2/resources
  sudo rm cheats_ws.zip
  sudo rm cheats_ni.zip
  sudo curl -O -L https://github.com/PCSX2/pcsx2_patches/releases/download/latest/cheats_ni.zip
  sudo curl -O -L https://github.com/PCSX2/pcsx2_patches/releases/download/latest/cheats_ws.zip
}