blob: 8c35077aded1a72a84426d3cc3b4c05289e48233 (
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
|
# Maintainer: Frederic Bezies <fredbezies at gmail dot com>
pkgname=dosbox-x-sdl2
pkgver=2023.03.31
pkgrel=1
pkgdesc="x86 emulator with builtin DOS, with patches and more features"
arch=(i686 x86_64 aarch64)
url="http://dosbox-x.com"
license=(GPL)
depends=(fluidsynth libxkbfile libxrandr sdl2_net libslirp)
makedepends=(glu)
optdepends=()
conflicts=('dosbox-x-git' 'dosbox-x' 'dosbox-x-sdl2-git')
source=(https://github.com/joncampbell123/dosbox-x/archive/dosbox-x-v${pkgver}.tar.gz)
sha256sums=('233f487a90654b03f32b290579f24d5b188a65361b8a7787154f5c4cd8f5f144')
build() {
cd "$srcdir/dosbox-x-dosbox-x-v$pkgver"
./autogen.sh
export LDFLAGS="${LDFLAGS//,--as-needed}"
chmod +x configure
./configure --enable-core-inline --enable-debug --enable-avcodec --prefix=/usr --enable-sdl2
make -j$(nproc)
}
package() {
cd "$srcdir/dosbox-x-dosbox-x-v$pkgver"
make DESTDIR="$pkgdir" install
}
|