summarylogtreecommitdiffstats
diff options
context:
space:
mode:
authormalacology2021-05-14 11:09:08 +0800
committermalacology2021-05-14 11:09:08 +0800
commit34386f125d42bbda98a7aab99ee374a71b43e26c (patch)
tree5ed1a9f73c376c0fdbf1eade9c2d0999881e87ec
parent88baecfe8539b52115eda14978b2d44ca1320f21 (diff)
downloadaur-34386f125d42bbda98a7aab99ee374a71b43e26c.tar.gz
version 38.1
-rw-r--r--.SRCINFO6
-rw-r--r--PKGBUILD25
2 files changed, 10 insertions, 21 deletions
diff --git a/.SRCINFO b/.SRCINFO
index a0cde1dcb1cd..8cb47b22ae3c 100644
--- a/.SRCINFO
+++ b/.SRCINFO
@@ -1,6 +1,6 @@
pkgbase = ugene-bin
pkgdesc = A free cross-platform genome analysis suite (binary release)
- pkgver = 33.0
+ pkgver = 38.1
pkgrel = 1
url = http://ugene.net
arch = x86_64
@@ -13,8 +13,8 @@ pkgbase = ugene-bin
depends = python
provides = ugene
conflicts = ugene
- source = http://ugene.unipro.ru/downloads/ugene-33.0-x86-64.tar.gz
- sha256sums = 7f902a6812ba5c888726d0fdc3abafed4f53079d02ce3d125010db0400647d83
+ source = https://github.com/ugeneunipro/ugene/releases/download/38.1/ugene-38.1-linux-x86-64.tar.gz
+ sha256sums = ee8509a3edea8675f3aed6a537d38f64c97e20026ab923d5a656a1029b4be3a1
pkgname = ugene-bin
diff --git a/PKGBUILD b/PKGBUILD
index 602c69d3307a..5e901c15120c 100644
--- a/PKGBUILD
+++ b/PKGBUILD
@@ -2,7 +2,7 @@
#Previous Maintainer Jens Staal <staal1978@gmail.com>
pkgname=ugene-bin
-pkgver=33.0
+pkgver=38.1
pkgrel=1
pkgdesc="A free cross-platform genome analysis suite (binary release)"
arch=('x86_64')
@@ -11,26 +11,15 @@ license=('GPL')
depends=('qt5-script' 'qt5-svg' 'qt5-webkit' 'glu' 'procps-ng' 'python')
provides=('ugene')
conflicts=('ugene')
-source=("http://ugene.unipro.ru/downloads/ugene-$pkgver-x86-64.tar.gz")
-sha256sums=('7f902a6812ba5c888726d0fdc3abafed4f53079d02ce3d125010db0400647d83')
+source=("https://github.com/ugeneunipro/ugene/releases/download/${pkgver}/ugene-${pkgver}-linux-x86-64.tar.gz")
+sha256sums=('ee8509a3edea8675f3aed6a537d38f64c97e20026ab923d5a656a1029b4be3a1')
package() {
cd "$srcdir/ugene-$pkgver"
-
- mkdir -p "${pkgdir}/usr/"{bin,lib/ugene,share/{applications,icons,licenses,man,ugene,mime,pixmaps}}
-
- #move stuff to the correct locations
- mv ugene.desktop $pkgdir/usr/share/applications
- mv LICENSE $pkgdir/usr/share/licenses/ugene
- mv man1 $pkgdir/usr/share/man/man1
- mv application-x-ugene.xml $pkgdir/usr/share/mime/
- mv ugene.png $pkgdir/usr/share/pixmaps/
+ mkdir -p "${pkgdir}/usr/"{bin,share/{applications,icons,ugene}}
tar -xf icons.tar.gz -C $pkgdir/usr/share/icons
-
- mv * $pkgdir/usr/lib/ugene/
-
- cd $pkgdir/usr/bin
- ln -s /usr/lib/ugene/ugene ugene
-
+ mv * $pkgdir/usr/share/ugene
+ ln -s /usr/share/ugene/ugene "$pkgdir"/usr/bin/ugene
+ ln -s /usr/share/ugene/ugene.desktop "$pkgdir"/usr/share/applications/ugene.desktop
}