blob: a0aeee292d19050df5de8cadc810fd44c0b262ba (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
|
# Maintainer: Malacology <guoyizhang at malacology dot net>
# Contributor: Malacology <guoyizhang at malacology dot net>
pkgname=raxmlgui
pkgver=2.0.15
pkgrel=1
pkgdesc="A new user-friendly program integrating RAxML-NG and ModelTest-NG for cutting-edge phylogenetic analysis. https://doi.org/10.1111/2041-210X.13512"
arch=('x86_64')
url="https://antonellilab.github.io/raxmlGUI"
provides=("raxmlgui")
license=('AGPL3')
source=("https://github.com/AntonelliLab/raxmlGUI/releases/download/v${pkgver}/raxmlGUI-${pkgver}.AppImage" "raxmlgui.desktop")
sha256sums=('3a3d14678e6bd2e630e1d98a1e2402bcf0470cfb633c710639142f01cffe3cfa'
'a589d49d17a9d07a7b6cf1e41334d5c014a57e1b4faa31f22f106223bb994596')
prepare() {
cd "${srcdir}"
chmod +x raxmlGUI-${pkgver}.AppImage
./raxmlGUI-${pkgver}.AppImage --appimage-extract
}
package() {
install -dm755 "$pkgdir"/usr/{bin,share/${pkgname}}
mv ${srcdir}/squashfs-root/* "${pkgdir}/usr/share/$pkgname"
chmod +x $pkgdir/usr/share/$pkgname/$pkgname
chmod -R 755 $pkgdir/usr/share/$pkgname/usr
ln -s /usr/share/$pkgname/$pkgname $pkgdir/usr/bin/$pkgname
install -D -m 755 ${srcdir}/raxmlgui.desktop ${pkgdir}/usr/share/applications/raxmlgui.desktop
}
|