blob: 5d14162e78b2e5b274ddb586e00b1e4a7e621a84 (
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=3.4.0
pkgrel=1
pkgdesc="ES-DE (EmulationStation Desktop Edition) is a frontend for browsing and launching games from your multi-platform collection"
arch=('x86_64')
url="https://es-de.org"
license=('MIT')
depends=('bluez-libs' 'curl' 'ffmpeg' 'freeimage' 'freetype2' 'gettext' 'harfbuzz' 'icu' 'libgit2' 'poppler' 'pugixml' 'sdl2')
makedepends=('cmake' 'bluez-libs' 'curl' 'pkgconf' 'make' 'ffmpeg' 'freeimage' 'freetype2' 'gettext' 'harfbuzz' 'icu' 'libgit2' 'poppler' 'pugixml' 'sdl2')
source=("emulationstation-de-stable-3.4-AUR_${pkgver}-${pkgrel}.tar.gz::https://gitlab.com/es-de/emulationstation-de/-/archive/stable-3.4-AUR/emulationstation-de-stable-3.4-AUR.tar.gz")
md5sums=('2f1f89439695d26d465cfd3f71586764')
build() {
export CXXFLAGS=""
cmake -DAUR_BUILD=on -B emulationstation-de-stable-3.4-AUR -S emulationstation-de-stable-3.4-AUR
make -C emulationstation-de-stable-3.4-AUR -j6
}
package() {
make -C emulationstation-de-stable-3.4-AUR DESTDIR="${pkgdir}" install
}
|