diff options
author | Tobias Geerinckx-Rice <me@tobias.gr> | 2019-07-10 10:26:41 +0200 |
---|---|---|
committer | Tobias Geerinckx-Rice <me@tobias.gr> | 2019-08-26 15:56:30 +0200 |
commit | eaa2b35c879f99cbfca866030d65a8f3ad1a6164 (patch) | |
tree | d03502fcfaed71fa5095a4e6a931c97b9bc772eb /gnu/packages/emulators.scm | |
parent | 6cef554be8926b026226b4bfd0bb2f37bd24aeae (diff) |
gnu: mupen64plus-core: Use HTTPS home page.
* gnu/packages/emulators.scm (mupen64plus-core)[home-page]: Use HTTPS.
Diffstat (limited to 'gnu/packages/emulators.scm')
-rw-r--r-- | gnu/packages/emulators.scm | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/gnu/packages/emulators.scm b/gnu/packages/emulators.scm index 8aff6d7059..d8319ed118 100644 --- a/gnu/packages/emulators.scm +++ b/gnu/packages/emulators.scm @@ -485,16 +485,17 @@ and Game Boy Color games.") (delete 'configure) ;; Makefile is in a subdirectory. (add-before - 'build 'cd-to-project-dir + 'build 'chdir-to-project-directory (lambda _ - (chdir "projects/unix")))) + (chdir "projects/unix") + #t))) #:make-flags (let ((out (assoc-ref %outputs "out"))) (list "all" (string-append "PREFIX=" out))) ;; There are no tests. #:tests? #f)) ;; As per the Makefile (in projects/unix/Makefile): (supported-systems '("i686-linux" "x86_64-linux")) - (home-page "http://www.mupen64plus.org/") + (home-page "https://www.mupen64plus.org/") (synopsis "Nintendo 64 emulator core library") (description "Mupen64Plus is a cross-platform plugin-based Nintendo 64 (N64) emulator |