summarylogtreecommitdiffstats
path: root/PKGBUILD
blob: f6a88e83a7900ecacb38cc36f654c518af0c7b66 (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
# Maintainer: Sebastian Meyer <aur@mailhell.seb7.de> 

_pkgname=sdl2_compat12
pkgname=sdl2_compat12-git
provides=('sdl=1.12.15')
conflicts=('sdl')
pkgver=r120+.dc55edfe5d2f+
pkgrel=1
pkgdesc="Provides a binary-compatible API for programs written against SDL 1.2, but it uses SDL 2.0 behind the scenes."
url=https://github.com/libsdl-org/sdl12-compat.git
arch=('i686' 'x86_64')
license=('ZLIB')
depends=('sdl2')
makedepends=('cmake' 'git')
source=('git+https://github.com/libsdl-org/sdl12-compat.git' 'fix-cmakelists.patch' 'fix-srcdir-reference.patch')
sha256sums=('SKIP'
            '6b89938e36ceafbe0e5fec87aa03606c20166890ea73320e5fabf4fd2c3ff4b5'
            'e59519698276b34277a76746b84c06afe5f21037e3c4a5a8e8f913306f0bd812')

prepare() {
    cd sdl12-compat
    patch --forward --strip=1  --input="${srcdir}/fix-cmakelists.patch"
    patch --forward --strip=1  --input="${srcdir}/fix-srcdir-reference.patch"
}

pkgver() {
  cd sdl12-compat 
  printf "r%s.%s" "$(git rev-list --count HEAD)" "$(git rev-parse --short=7 HEAD)"
}

build() {
  cd sdl12-compat
  cmake .
  make
}

package() {
  cd "sdl12-compat"
  mkdir -p "$pkgdir/usr/lib"
  mkdir -p "$pkgdir/usr/share/licenses/$_pkgname/"
  
  cp -a libSDL-1.2.so* "$pkgdir/usr/lib"
  cp -a COPYING "$pkgdir/usr/share/licenses/$_pkgname/LICENSE"
}