summarylogtreecommitdiffstats
path: root/PKGBUILD
blob: 066608134562925a51c78bb713fa37513fbace01 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
# Maintainer: Alexej Magura <agm2819*gmail*>
# Contributor: Swen Simon <swsimon at gmail dot com>

pkgname=epsxe-plugin-gpu-xgl2
pkgver=2.9
pkgrel=6
pkgdesc="Linux port of the OpenGL2 plugin"
url="http://www.pbernert.com"
depends=('epsxe' 'glib' 'gtk')
depends_i686+=('mesa')
depends_x86_64+=('lib32-mesa' 'lib32-glib' 'lib32-gtk')
source=(http://www.pbernert.com/gpupetexgl209.tar.gz http://www.pbernert.com/gpupetexgl208.tar.gz)
md5sums=('61bdad38a3a616bc000664de23d00c6e'
         '088c5cdc21a0807e9227d7ec4672b51d')
license=('custom')
arch=('i686' 'x86_64')

prepare () {

  cd "$srcdir"
  [[ -f 'readme.txt' ]] && rename "readme.txt" README "readme.txt"
  [[ -f 'version.txt' ]] && rename "version.txt" changelog "version.txt"
}

package () {

    cd "$srcdir"
    install -d "$pkgdir"/opt/epsxe/{cfg,plugins}

    install -t "$pkgdir/opt/epsxe/cfg" $(find . -name "cfg*" -print) $(find . -name "*.cfg" -print)

    install -t "$pkgdir/opt/epsxe/plugins" $(find . -name "*.so.*" -print)

    install -d "$pkgdir/usr/share/doc/$pkgname"

    install -m 644 -t "$pkgdir/usr/share/doc/$pkgname" README changelog

  # permissions
  chown root:games "$pkgdir"/opt/epsxe/cfg/{cfgPeteXGL2,gpuPeteXGL2.cfg}
  chown root:games "$pkgdir"/opt/epsxe/plugins/libgpuPeteXGL2.so.2.0.9
  chmod 775 "$pkgdir"/opt/epsxe/{plugins,cfg}
  chmod 775 "$pkgdir"/opt/epsxe/cfg/cfgPeteXGL2
  chmod 664 "$pkgdir"/opt/epsxe/cfg/gpuPeteXGL2.cfg
  chmod 775 "$pkgdir"/opt/epsxe/plugins/libgpuPeteXGL2.so.2.0.9
}