author | Mike Cuche
<cuche@mailbox.org> 2022-08-02 10:34:22 UTC |
committer | Mike Cuche
<cuche@mailbox.org> 2022-08-02 10:34:22 UTC |
parent | f35b94a2afaeddac74fc3238a4358789261afa8e |
.SRCINFO | +3 | -3 |
PKGBUILD | +5 | -5 |
diff --git a/.SRCINFO b/.SRCINFO index 8f48a9a..77ab0b6 100644 --- a/.SRCINFO +++ b/.SRCINFO @@ -1,6 +1,6 @@ pkgbase = dosbox-x pkgdesc = x86 emulator with builtin DOS, with patches with more features - pkgver = 0.84.1 + pkgver = 2022.08.0 pkgrel = 1 url = http://dosbox-x.com arch = i686 @@ -19,7 +19,7 @@ pkgbase = dosbox-x depends = libpcap optdepends = openglide-git: Third-party 3dfx Glide API support conflicts = dosbox-x-git - source = https://github.com/joncampbell123/dosbox-x/archive/dosbox-x-v0.84.1.tar.gz - sha256sums = d5ba5b3d87b0dc69d70f6c9701eec36772bbc3716e0b201b74ec73d4b3ff38cc + source = https://github.com/joncampbell123/dosbox-x/archive/dosbox-x-windows-v2022.08.0.tar.gz + sha256sums = bac936ee198b607fb0cc55dfc4575e44b700dbc9138904d2e264792a6e6a941c pkgname = dosbox-x diff --git a/PKGBUILD b/PKGBUILD index bf88adf..8ad50b0 100644 --- a/PKGBUILD +++ b/PKGBUILD @@ -1,7 +1,7 @@ # Maintainer: Mike Cuche <cuche AT mailbox.org> pkgname=dosbox-x -pkgver=0.84.1 +pkgver=2022.08.0 pkgrel=1 pkgdesc="x86 emulator with builtin DOS, with patches with more features" arch=(i686 x86_64 aarch64) @@ -11,12 +11,12 @@ depends=(fluidsynth libxkbfile libpng libxrandr mesa ffmpeg4.4 physfs libslirp l makedepends=(glu) optdepends=('openglide-git: Third-party 3dfx Glide API support') conflicts=(dosbox-x-git) -source=(https://github.com/joncampbell123/dosbox-x/archive/dosbox-x-v${pkgver}.tar.gz) +source=(https://github.com/joncampbell123/dosbox-x/archive/dosbox-x-windows-v${pkgver}.tar.gz) -sha256sums=('d5ba5b3d87b0dc69d70f6c9701eec36772bbc3716e0b201b74ec73d4b3ff38cc') +sha256sums=('bac936ee198b607fb0cc55dfc4575e44b700dbc9138904d2e264792a6e6a941c') build() { - cd $srcdir/dosbox-x-dosbox-x-v${pkgver} + cd $srcdir/dosbox-x-dosbox-x-windows-v${pkgver} sed -i -e 's/-j3/-j$(nproc)/g' build sed -i 's|"$LIBS -lavcodec -lavformat -lavutil -lswscale "`pkg-config libavcodec --libs`|`pkg-config libavcodec libavformat libavutil libswscale libswresample --libs`"$LIBS"|' configure.ac #ffmpeg avcodec fix sed -i 's|$LIBS $SDL_LIBS|$LIBS $SDL_LIBS -lm -lGL|' configure.ac #fluidsynth fix @@ -24,6 +24,6 @@ build() { } package() { - cd $srcdir/dosbox-x-dosbox-x-v${pkgver} + cd $srcdir/dosbox-x-dosbox-x-windows-v${pkgver} make DESTDIR="${pkgdir}" install }