Search Criteria
Package Details: mupen64plus-video-gliden64-git 4.0.r165.gfbd1ad1a-1
Git Clone URL: | https://aur.archlinux.org/mupen64plus-video-gliden64-git.git (read-only, click to copy) |
---|---|
Package Base: | mupen64plus-video-gliden64-git |
Description: | A new generation, open-source graphics plugin for N64 emulators (git version) |
Upstream URL: | https://github.com/gonetz/GLideN64/ |
Keywords: | n64 nintendo64 |
Licenses: | |
Conflicts: | |
Provides: | |
Submitter: | fzavan |
Maintainer: | dbermond |
Last Packager: | dbermond |
Votes: | 3 |
Popularity: | 0.000000 |
First Submitted: | 2015-06-11 03:50 |
Last Updated: | 2020-04-10 20:59 |
Dependencies (8)
- freetype2 (freetype2-v35, freetype2-old-hinting, freetype2-infinality, freetype2-ttmetrics, freetype2-ultimate5, freetype2-git, freetype2-infinality-remix, freetype2-minimal-git)
- libgl (glshim-git, catalyst-firepro, libhybris-ext-libgl-git, catalyst-total, catalyst-libgl, catalyst-total-hd234k, libhybris-libgl-git, mesa-libgl-noglvnd, catalyst-test, swiftshader-git, nvidia-340xx-utils, libglvnd-git, amdgpu-pro-libgl, libglvnd)
- libpng (libpng-git, libpng-apng, libpng-minimal-git)
- mupen64plus (mupen64plus-git)
- zlib (zlib-static, zlib-git, zlib-asm, minizip-asm, zlib-ng-git)
- cmake (cmake-git) (make)
- git (git-git) (make)
- qt5-base (qt5-base-git, qt5-base-fractional-fix, qt5-base-headless) (make)
Latest Comments
dbermond commented on 2020-04-10 21:04
@Snowstorm64 Thank you for pointing this. Now fixed.
@aaronp Thanks. I've modified mupen64plus-gui-git so it now shows the windows for video settings and controller configuration. No need to add this patch here.
Snowstorm64 commented on 2020-04-04 20:49
Hello dbermond, looks like there's some issue with this PKGBUILD as the plugin built this way doesn't work for me.
Error: /usr/lib/mupen64plus/mupen64plus-video-GLideN64.so: undefined symbol: osal_is_directory
To fix it, I have to change two lines:
Line 41: -DCMAKE_BUILD_TYPE:STRING='None' \
to:
-DCMAKE_BUILD_TYPE:STRING='Release' \
and line 49: install -D -m644 GLideN64/src/build/libmupen64plus-video-GLideN64.so -t "${pkgdir}/usr/lib/mupen64plus"
to:
install -D -m644 GLideN64/src/build/plugin/Release/mupen64plus-video-GLideN64.so -t "${pkgdir}/usr/lib/mupen64plus"
aaronp commented on 2019-03-30 15:22
In order to get the video config UI in the latest mupen64plus-gui-git, you need to apply https://github.com/loganmc10/GLideN64/commit/e1811ae2327d58d625575e6dccf92f7a279b269f.patch and build the GLuideNUI static lib in a build subdir with qmake.
dbermond commented on 2018-10-25 01:03
Adopted. Package fixed.
Develon commented on 2018-04-23 20:40
There's an error in the current PKGBUILD. It will not build properly unless the following line is changed:
LINE 34: install -Dm644 "plugin/release/mupen64plus-video-GLideN64.so" \
to
LINE 34: install -Dm644 "plugin/Release/mupen64plus-video-GLideN64.so" \
(Note the capital R.)
dbermond commented on 2017-08-28 01:27
The method used to obtain the version in pkgver() function is making the package to be always reinstalled/rebuilt at every system update when using AUR helpers (e.g.: pacaur).
Please, use a pkgver() method that is described in the Wiki:
https://wiki.archlinux.org/index.php/VCS_package_guidelines#Git
As a suggestion, you can use:
git describe --long --tags | sed 's/Public_Release_//;s/_/./g;s/\([^-]*-g\)/r\1/;s/-/./g;s/^v//'