summarylogtreecommitdiffstats
path: root/PKGBUILD
blob: 07d4d3837b75ba82f8f2821ed3e92ef63ab7e519 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
# Maintainer: Leon Styhre <info@es-de.org>

pkgname=emulationstation-de
pkgver=1.2.0
pkgrel=1
pkgdesc="EmulationStation Desktop Edition (ES-DE) is a frontend for browsing and launching games from your multi-platform game collection"
arch=('x86_64')
url="https://es-de.org"
license=('MIT')
depends=('curl' 'ffmpeg' 'freeimage' 'freetype2' 'pugixml' 'sdl2')
makedepends=('cmake' 'curl' 'pkgconf' 'make' 'ffmpeg' 'freeimage' 'freetype2' 'pugixml' 'sdl2')
conflicts=('emulationstation' 'emulationstation-git')
source=("https://gitlab.com/leonstyhre/emulationstation-de/-/archive/stable-1.2/emulationstation-de-stable-1.2.tar.gz")
md5sums=('662c978f3981dc18fbbd4403fe269bd8')

build() {
        cmake -B emulationstation-de-stable-1.2 -S emulationstation-de-stable-1.2 .
        make -C emulationstation-de-stable-1.2 -j4
}

package() {
        make -C emulationstation-de-stable-1.2 DESTDIR="${pkgdir}" install
}