mirror of
https://github.com/BioArchLinux/Packages.git
synced 2025-03-10 12:02:42 +00:00
23 lines
1,001 B
Bash
23 lines
1,001 B
Bash
# Maintainer: Malacology <guoyizhang at malacology dot net>
|
|
# Contributor: Malacology <guoyizhang at malacology dot net>
|
|
|
|
pkgname=jane
|
|
pkgver=4.01
|
|
pkgrel=5
|
|
pkgdesc="software tool for the cophylogeny reconstruction problem. https://doi.org/10.1186/1748-7188-5-16"
|
|
arch=('x86_64')
|
|
url="https://www.cs.hmc.edu/~hadas/jane/"
|
|
license=('Harvey Mudd College source code & Apache License')
|
|
source=("https://www.cs.hmc.edu/~hadas/jane/downloads/linux.tar.gz" "jane.desktop" "jane.png")
|
|
sha256sums=('7cd00209eb7fcf65124b768e9d502065c45ced1800a8d691911daeb4d1664333'
|
|
'3801e224f6875859f51fa3a6cae1bc53f53413fd027395629e1637e446a96859'
|
|
'cf2275b7de1beb05e3be078409f596d0f88735888ee6e8298977ee6a1427a6c1')
|
|
depends=(
|
|
'java-runtime'
|
|
)
|
|
package() {
|
|
install -dm755 "$pkgdir"/usr/share/{jane,icons,applications}
|
|
install -m 755 ${srcdir}/*.desktop ${pkgdir}/usr/share/applications
|
|
install -m 755 ${srcdir}/*.png ${pkgdir}/usr/share/icons
|
|
mv "$srcdir"/lib "$pkgdir"/usr/share/jane
|
|
}
|