Date: Monday, March 2, 2020 @ 14:39:45 Author: lfleischer Revision: 588504
upgpkg: zshdb 1.1.2-1: upstream update Modified: zshdb/trunk/PKGBUILD ----------+ PKGBUILD | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) Modified: PKGBUILD =================================================================== --- PKGBUILD 2020-03-02 13:57:09 UTC (rev 588503) +++ PKGBUILD 2020-03-02 14:39:45 UTC (rev 588504) @@ -2,26 +2,26 @@ # Contributor: noonov <[email protected]> pkgname=zshdb -pkgver=1.0.1 +pkgver=1.1.2 pkgrel=1 pkgdesc='A debugger for zsh scripts.' arch=('any') -url='http://bashdb.sourceforge.net/' +url='https://github.com/rocky/zshdb/' license=('GPL') depends=('zsh') optdepends=('python-pygments: for syntax highlighting') -source=("https://github.com/rocky/$pkgname/archive/release-$pkgver.tar.gz") -md5sums=('2610e89a892c870035936d7744704297') +source=("https://github.com/rocky/$pkgname/archive/$pkgver.tar.gz") +md5sums=('14f3090e3a16799a8e4b7091a0d7edd5') build() { - cd "${srcdir}/${pkgname}-release-${pkgver}" + cd "${srcdir}/${pkgname}-${pkgver}" - ./autogen.sh - ./configure --prefix=/usr - make + ./autogen.sh + ./configure --prefix=/usr + make } package() { - cd "${srcdir}/${pkgname}-release-${pkgver}" - make DESTDIR="${pkgdir}" install + cd "${srcdir}/${pkgname}-${pkgver}" + make DESTDIR="${pkgdir}" install }
