diff options
author | Universebenzene | 2023-09-28 09:55:10 +0800 |
---|---|---|
committer | Universebenzene | 2023-09-28 09:55:10 +0800 |
commit | a9cc3f7b46abf95a12be35ac9f7eab32c64a8d94 (patch) | |
tree | d3767f2f9fd653860c5881a6050853a477a3525e /PKGBUILD | |
parent | cbd8cd2b68e7d519a9031b4d532ec34ef8cee417 (diff) | |
download | aur-a9cc3f7b46abf95a12be35ac9f7eab32c64a8d94.tar.gz |
Update to version 1.0.3
Diffstat (limited to 'PKGBUILD')
-rw-r--r-- | PKGBUILD | 20 |
1 files changed, 10 insertions, 10 deletions
@@ -5,7 +5,7 @@ # Contributor: Jan Kohnert <kohni.jk at gmail dot com> pkgname=python-gdl -pkgver=1.0.2 +pkgver=1.0.3 pkgrel=1 pkgdesc="Python interface for the GNU Data Language(GDL)" arch=('i686' 'x86_64') @@ -15,10 +15,10 @@ depends=("gnudatalanguage=${pkgver}" 'python-numpy') makedepends=('cmake' 'eigen') #options=('!makeflags') conflicts=('python2-gdl') -source=("https://github.com/gnudatalanguage/gdl/archive/v${pkgver}.tar.gz" +source=("${pkgname}-${pkgver}.tar.gz::https://github.com/gnudatalanguage/gdl/releases/download/v${pkgver}/gdl-v${pkgver}.tar.gz" 'gdl.profile' 'gdl-1.0.1-fix-python-wxGetApp.patch') -md5sums=('0a86735911637bcdb6935ee6cd14d751' +md5sums=('8125987275e4bcea3736c51603427e9b' '40aa5fd8278cd8e80425c62a577563cc' 'bf1e1fb364eaf92e09ad7031c0c2b546') @@ -27,14 +27,14 @@ get_pyinfo() { python -c "import sys; print('$1'.join(map(str, sys.version_info[:2])))" } -prepare() { - cd ${srcdir}/gdl-${pkgver} - - patch -Np1 -i "${srcdir}/gdl-1.0.1-fix-python-wxGetApp.patch" -} +#prepare() { +# cd ${srcdir}/gdl-${pkgver} +# +# patch -Np1 -i "${srcdir}/gdl-1.0.1-fix-python-wxGetApp.patch" +#} build() { - cd ${srcdir}/gdl-${pkgver} + cd ${srcdir}/gdl if [[ -d build ]]; then rm -r build fi @@ -50,7 +50,7 @@ build() { } package() { - cd ${srcdir}/gdl-${pkgver}/build + cd ${srcdir}/gdl/build if [[ -d ../pkginstall ]]; then rm -r ../pkginstall fi |