diff options
author | Vincent | 2015-12-13 21:06:23 +0100 |
---|---|---|
committer | Vincent | 2015-12-13 21:06:23 +0100 |
commit | ca003749fc75a196c07162376a6944d1a3695392 (patch) | |
tree | 90f26ea7ae38ae2842142729c217a3251929dc9a | |
parent | a6cccbd7f72dd45e0614f0030fe4ceb13b59c93d (diff) | |
download | aur-ca003749fc75a196c07162376a6944d1a3695392.tar.gz |
new upstream 0.9.1
-rw-r--r-- | PKGBUILD | 16 |
1 files changed, 9 insertions, 7 deletions
@@ -1,11 +1,10 @@ pkgname=siril -pkgver=0.9.0rc1 +pkgver=0.9.1 pkgrel=1 pkgdesc="Siril is an astronomical image processing software for Linux. (IRIS clone)" arch=('i686' 'x86_64') license=('GPLv3') depends=('gtk3' 'fftw' 'cfitsio' 'gsl' 'libconfig') -makedepends=('subversion') url="http://free-astro.vinvin.tf/index.php/Siril" optdepends=('libpng: PNG import support' 'libjpeg: JPEG import and export support' @@ -14,18 +13,21 @@ optdepends=('libpng: PNG import support' 'ffms2: films native support as image sequences' 'opencv: rotate and resize images' ) -source=("http://free-astro.vinvin.tf/download/siril-0.9.0-rc1.tar.gz") -sha1sums=('17f9dcb8912a1593455b8e3382d60a8fc288b195') + +_pkgname="${pkgname}-${pkgver}" +source=("http://free-astro.vinvin.tf/download/${_pkgname}.tar.bz2") + +md5sums=('4db46174f0b3c0c6c2d5de052f631590') build() { - cd "${pkgname}" - aclocal && autoconf && autoheader && automake --add-missing + cd "${_pkgname}" + autoreconf -fi ./configure --prefix=/usr make } package() { - cd "${pkgname}" + cd "${_pkgname}" make DESTDIR="${pkgdir}" install } |