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: GPL2
Conflicts: mupenplus-video-gliden64
Provides: mupenplus-video-gliden64
Submitter: fzavan
Maintainer: dbermond
Last Packager: dbermond
Votes: 4
Popularity: 0.000000
First Submitted: 2015-06-11 03:50 (UTC)
Last Updated: 2020-04-10 20:59 (UTC)

Latest Comments

dbermond commented on 2020-04-10 21:04 (UTC) (edited on 2020-04-10 21:09 (UTC) by dbermond)

@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 (UTC) (edited on 2020-04-04 20:49 (UTC) by Snowstorm64)

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 (UTC)

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 (UTC)

Adopted. Package fixed.

Develon commented on 2018-04-23 20:40 (UTC) (edited on 2018-04-23 20:41 (UTC) by Develon)

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 (UTC)

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//'