mirror of
https://github.com/BioArchLinux/Packages.git
synced 2025-03-10 12:02:42 +00:00
28 lines
958 B
Bash
28 lines
958 B
Bash
# Maintainer: Malacology <guoyizhang at malacology dot com>
|
|
# Contributor: Malacology <guoyizhang at malacology dot com>
|
|
|
|
pkgname=nona
|
|
pkgver=2.0
|
|
pkgrel=1
|
|
pkgdesc="NONA: a bastard son of Pee-Wee. Phylogenetic Analysis Software"
|
|
arch=('any')
|
|
url="www.cladistics.com"
|
|
license=('custom')
|
|
depends=(
|
|
'wine'
|
|
'wine_gecko'
|
|
'wine-mono'
|
|
)
|
|
source=("https://github.com/starsareintherose/nona/releases/download/v2.0/NONA.zip" "nona.desktop" "nona")
|
|
sha256sums=('508f41744162a6e637b6844048e51e5e49c8d689ec4373d2442113d08abe4d52'
|
|
'47d543686903d8226427472e4f0ebe1edfa6bec3a551787bf60013300a29aea3'
|
|
'21a66189b3bf4f9eb475b7d7adbef903d867de0cc4a69008340fbba67cdc8405')
|
|
|
|
package() {
|
|
|
|
install -dm755 "$pkgdir"/usr/{bin,share/{applications,${pkgname}}}
|
|
install -Dm755 ${srcdir}/nona.desktop ${pkgdir}/usr/share/applications/nona.desktop
|
|
install -Dm755 ${srcdir}/nona ${pkgdir}/usr/bin/nona
|
|
|
|
mv ${srcdir}/* ${pkgdir}/usr/share/${pkgname}
|
|
}
|