Date: Monday, March 20, 2023 @ 22:34:03
Author: grawlinson
Revision: 1424528
archrelease: copy trunk to community-any
Added:
zshdb/repos/community-any/PKGBUILD
(from rev 1424527, zshdb/trunk/PKGBUILD)
Deleted:
zshdb/repos/community-any/PKGBUILD
----------+
PKGBUILD | 57 +++++++++++++++++++++++++++++----------------------------
1 file changed, 29 insertions(+), 28 deletions(-)
Deleted: PKGBUILD
===================================================================
--- PKGBUILD 2023-03-20 22:33:18 UTC (rev 1424527)
+++ PKGBUILD 2023-03-20 22:34:03 UTC (rev 1424528)
@@ -1,28 +0,0 @@
-# Maintainer: Lukas Fleischer <[email protected]>
-# Contributor: noonov <[email protected]>
-
-pkgname=zshdb
-pkgver=1.1.2
-pkgrel=2
-pkgdesc='A debugger for zsh scripts.'
-arch=('any')
-url='https://github.com/rocky/zshdb/'
-license=('GPL')
-depends=('zsh')
-optdepends=('python-pygments: for syntax highlighting')
-source=("https://github.com/rocky/$pkgname/archive/$pkgver.tar.gz")
-md5sums=('14f3090e3a16799a8e4b7091a0d7edd5')
-sha256sums=('49ac1db976808239367ae52000f7228edaf8888b1c08ad843c7ff55c23388e5d')
-
-build() {
- cd "${srcdir}/${pkgname}-${pkgver}"
-
- ./autogen.sh
- ./configure --prefix=/usr
- make
-}
-
-package() {
- cd "${srcdir}/${pkgname}-${pkgver}"
- make DESTDIR="${pkgdir}" install
-}
Copied: zshdb/repos/community-any/PKGBUILD (from rev 1424527,
zshdb/trunk/PKGBUILD)
===================================================================
--- PKGBUILD (rev 0)
+++ PKGBUILD 2023-03-20 22:34:03 UTC (rev 1424528)
@@ -0,0 +1,29 @@
+# Maintainer: Lukas Fleischer <[email protected]>
+# Contributor: noonov <[email protected]>
+
+pkgname=zshdb
+pkgver=1.1.3
+pkgrel=1
+pkgdesc='A debugger for zsh scripts'
+arch=('any')
+url='https://github.com/rocky/zshdb/'
+license=('GPL')
+depends=('zsh' 'coreutils')
+optdepends=('python-pygments: for syntax highlighting')
+source=("$pkgname-$pkgver.tar.gz::https://github.com/rocky/$pkgname/archive/$pkgver.tar.gz")
+sha512sums=('64d08fc890b503136c8b45dea528d56a5a584cc91fa723fe0785be8c2953395f860b58d363465cc77057cecc579c2ca4ad3372d73106b65ac9220c2adbc680ae')
+b2sums=('3dfab5677fb173e8a16508f0865661d12eca550dfc8b60bc1b107f0b92c821e837912308c3b3bb398575e78ca54fa4a33844769ef6d758700e2c28d1036c2b55')
+
+build() {
+ cd "$pkgname-$pkgver"
+
+ ./autogen.sh
+ ./configure --prefix=/usr
+ make
+}
+
+package() {
+ cd "$pkgname-$pkgver"
+
+ make DESTDIR="$pkgdir" install
+}