From 5186b9d2823e6999492d6fda7e4f2b1e0d9d4eae Mon Sep 17 00:00:00 2001 From: Dmitry Porunov Date: Wed, 24 Jun 2020 20:38:04 +0300 Subject: [PATCH] Fix URL Again --- pkg/aur/posy-cursors/PKGBUILD | 16 +++++++++------- 1 file changed, 9 insertions(+), 7 deletions(-) diff --git a/pkg/aur/posy-cursors/PKGBUILD b/pkg/aur/posy-cursors/PKGBUILD index 2f77920..d220dba 100644 --- a/pkg/aur/posy-cursors/PKGBUILD +++ b/pkg/aur/posy-cursors/PKGBUILD @@ -7,15 +7,17 @@ pkgdesc="Port of Posy's improved cursors" arch=(any) url="https://gitlab.com/ykkzde/posy-cursors" license=(unknown) -source=("$pkgname-$pkgver.tar.gz::$url/-/archive/v$pkgver/posy-cursors-v$pkgver.tar.gz?path=themes") # automatically set in CI, see: /.gitlab-ci.yml +source=("$pkgname-$pkgver-$pkgrel.tar.gz::$url/-/archive/v$pkgver/posy-cursors-v$pkgver.tar.gz?path=themes") # automatically set in CI, see: /.gitlab-ci.yml sha256sums=('SKIP') # automatically set in CI, see: /.gitlab-ci.yml package() { - cd posy-cursors-v$pkgver/themes - install -Ddm755 "$pkgdir/usr/share/icons" - cp -dr --no-preserve=ownership posy-white/ "$pkgdir/usr/share/icons/posy-white" - cp -dr --no-preserve=ownership posy-black/ "$pkgdir/usr/share/icons/posy-black" - cp -dr --no-preserve=ownership posy-white-tiny/ "$pkgdir/usr/share/icons/posy-white-tiny" - cp -dr --no-preserve=ownership posy-black-tiny/ "$pkgdir/usr/share/icons/posy-black-tiny" + ls -la + ls -la * + cd $pkgname-$pkgver-$pkgrel/themes + install -Ddm755 "$pkgdir/usr/share/icons" + cp -dr --no-preserve=ownership posy-white/ "$pkgdir/usr/share/icons/posy-white" + cp -dr --no-preserve=ownership posy-black/ "$pkgdir/usr/share/icons/posy-black" + cp -dr --no-preserve=ownership posy-white-tiny/ "$pkgdir/usr/share/icons/posy-white-tiny" + cp -dr --no-preserve=ownership posy-black-tiny/ "$pkgdir/usr/share/icons/posy-black-tiny" }