Search Criteria
Package Details: fiji-bin 2:20250302.2217-1
Package Actions
Git Clone URL: | https://aur.archlinux.org/fiji-bin.git (read-only, click to copy) |
---|---|
Package Base: | fiji-bin |
Description: | ImageJ distribution with a lot of plugins for scientific (especially biology related) image processing. |
Upstream URL: | http://fiji.sc/ |
Licenses: | GPL |
Submitter: | hottea |
Maintainer: | flomine |
Last Packager: | flomine |
Votes: | 25 |
Popularity: | 0.63 |
First Submitted: | 2019-11-15 07:19 (UTC) |
Last Updated: | 2025-03-04 16:29 (UTC) |
Dependencies (4)
- freetype2 (freetype2-macosAUR, freetype2-qdoledAUR, freetype2-gitAUR, freetype2-qdoled-aw3225qfAUR)
- libnet (libnet-gitAUR)
- gendesk (make)
- ttf-lucida-fontsAUR (optional) – fix font rendering, see https://aur.archlinux.org/packages/fiji-bin#comment-1014013
Latest Comments
« First ‹ Previous 1 2 3 4
user9665 commented on 2019-08-15 09:50 (UTC)
Minor improvement to automatically set pkgver. I'm not quite sure how a patch can be submitted here. Cheers Jacopo
diff --git a/PKGBUILD b/PKGBUILD index
4dc18c2
..4abcd57 100644 --- a/PKGBUILD +++ b/PKGBUILD @@ -1,8 +1,13 @@ # Maintainer: Eugene Dvoretsky <radioxoma from gmail com> # Contributor: dreieck+# wget -q -O tmp.html https://downloads.imagej.net/fiji/latest/ +# RELEASE_URL=
cat tmp.html | grep -m 1 -o -E "https[^<>]*?fiji-nojre.zip" | head -1
+# echo $RELEASE_URL +# exit + pkgname="fiji-binary" -pkgver="20170530" +pkgver=wget -q -O - <https://downloads.imagej.net/fiji/latest/> | grep fiji-nojre.zip | sed -E 's/^.*([0-9]{4}-[0-9]{2}-[0-9]{2}).*$/\1/' | sed 's/-//g'
pkgrel="1" pkgdesc="ImageJ distribution with a lot of plugins for scientific (especially biology related) image processing." arch=('i686' 'x86_64') @@ -18,10 +23,10 @@ install=fiji.install## Life-line
-source=("https://downloads.imagej.net/fiji/Life-Line/fiji-nojre-${pkgver}.zip" +source=("https://downloads.imagej.net/fiji/latest/fiji-nojre.zip" "fiji.desktop" "fiji.install") -sha256sums=('cf9fb45c48b22a7888b479968477f1f7a300a9c833e47244cbe0d1e93890bd20' +sha256sums=('SKIP' '788a32dd0b24f482e78d5ec3209e9d5b3493a59e1da6edf82b1373e87c0320bc' '6dcc861af9328076282893ffcecc77a7fee448cec51fb7ccd51c5cece9740fa1')
@@ -54,6 +59,7 @@ build() _removefrompackage=('Contents' 'ImageJ-linux32' 'ImageJ-linux64' 'ImageJ-win32.exe' 'ImageJ-win64.exe' 'plugins/Fiji_Updater.jar' + 'plugins/imagej-updater*.jar' ) _executablebak="$(mktemp)" || exit 21 # Save the executable matching our architecture.
petecan commented on 2016-02-22 12:44 (UTC)
boina commented on 2015-12-01 04:59 (UTC)
radioxoma commented on 2015-11-30 13:27 (UTC) (edited on 2016-01-17 00:00 (UTC) by radioxoma)
boina commented on 2015-11-28 00:23 (UTC)
« First ‹ Previous 1 2 3 4