blob: fb0bc97ce35d0ff4ad284e490bdcc48ceb53acf8 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
# Maintainer: Martin Larralde <martin.larralde@embl.de>
pkgname=fiji-plugin-morpholibj
pkgver=1.6.4
pkgrel=0
pkgdesc="Collection of mathematical morphology methods and plugins for ImageJ (Fiji version)"
url="https://imagej.net/MorphoLibJ"
arch=("any")
license=("LGPL3")
depends=('fiji-bin')
source=("https://github.com/ijpb/MorphoLibJ/releases/download/MorphoLibJ_-${pkgver}/MorphoLibJ_-${pkgver}.jar")
noextract=()
sha256sums=('ef1e3e7fa5c907233d95d47c6a49c4269732418da99193695b299572ad6d370f')
package() {
install -m755 -d ${pkgdir}/opt/fiji/plugins/
install -m644 ${srcdir}/MorphoLibJ_-${pkgver}.jar ${pkgdir}/opt/fiji/plugins/
}
|