Package Details: fnm-bin 1.38.1-1

Git Clone URL: https://aur.archlinux.org/fnm-bin.git (read-only, click to copy)
Package Base: fnm-bin
Description: Fast and simple Node.js version manager, built in Rust
Upstream URL: https://github.com/Schniz/fnm
Licenses: GPL3
Conflicts: fnm, fnm-git
Provides: fnm
Submitter: Ugzuzg
Maintainer: Ugzuzg
Last Packager: Ugzuzg
Votes: 23
Popularity: 0.81
First Submitted: 2019-02-27 10:57 (UTC)
Last Updated: 2024-11-17 11:20 (UTC)

Dependencies (0)

Required by (0)

Sources (3)

Latest Comments

« First ‹ Previous 1 2

Marina89 commented on 2019-06-03 09:36 (UTC)

Your site is truly cool and this is an extraordinary moving article. https://happywheels3d.io

wezm commented on 2019-06-02 23:06 (UTC)

Here is a patch for 1.11.0. It also changes the source line to be tied to the version so that makepkg notices the version change. Previously it thought it had already downloaded the source (which was the previous version) and then the checksum would fail.

diff --git a/PKGBUILD b/PKGBUILD
index [`20f1399`](https://aur.archlinux.org/cgit/aur.git/commit/?h=fnm-bin&id=20f1399)..2f2a18e 100644
--- a/PKGBUILD
+++ b/PKGBUILD
@@ -1,7 +1,7 @@
 # Maintainer: Jarasłaŭ Viktorčyk <ugzuzg@gmail.com>
 pkgname=fnm-bin
 _pkgname=fnm
-pkgver=1.10.0
+pkgver=1.11.0
 pkgrel=1
 pkgdesc="Fast and simple Node.js version manager, built in ReasonML "
 arch=('x86_64')
@@ -9,8 +9,8 @@ url="<https://github.com/Schniz/fnm>"
 license=('GPL3')
 provides=('fnm')
 conflicts=('fnm-git')
-source=("<https://github.com/Schniz/fnm/releases/download/v>$pkgver/$_pkgname-linux.zip")
-md5sums=('1dd844b3146b471bcb17e02567090899')
+source=("$pkgver.tar.gz::$url/releases/download/v$pkgver/$_pkgname-linux.zip")
+sha256sums=('ab66a18da0b1423ec4e4b92832d99a6642f3ff3131937d7bade60aa0e0aa69c3')

 package() {
   install -Dm755 fnm-linux/fnm "$pkgdir/usr/bin/fnm"