Compare commits

..

2 Commits

Author SHA1 Message Date
Dmitry Porunov
5186b9d282 Fix URL Again 2020-06-24 20:38:04 +03:00
Dmitry Porunov
801555b61f Fix path in PKGBUILD, remove unneeded lines in .gitlab-ci.yml 2020-06-24 20:31:47 +03:00
2 changed files with 9 additions and 9 deletions

View File

@@ -4,10 +4,8 @@ stages:
Update-AUR: Update-AUR:
image: archlinux/base image: archlinux/base
stage: package stage: package
dependencies: []
only: only:
- /^v(\d+\.)*\d+$/ - /^v(\d+\.)*\d+$/
before_script: []
script: script:
- cd ./pkg/aur - cd ./pkg/aur

View File

@@ -7,15 +7,17 @@ pkgdesc="Port of Posy's improved cursors"
arch=(any) arch=(any)
url="https://gitlab.com/ykkzde/posy-cursors" url="https://gitlab.com/ykkzde/posy-cursors"
license=(unknown) 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 sha256sums=('SKIP') # automatically set in CI, see: /.gitlab-ci.yml
package() { package() {
cd posy-cursors-v$pkgver-themes/themes ls -la
install -Ddm755 "$pkgdir/usr/share/icons" ls -la *
cp -dr --no-preserve=ownership posy-white/ "$pkgdir/usr/share/icons/posy-white" cd $pkgname-$pkgver-$pkgrel/themes
cp -dr --no-preserve=ownership posy-black/ "$pkgdir/usr/share/icons/posy-black" install -Ddm755 "$pkgdir/usr/share/icons"
cp -dr --no-preserve=ownership posy-white-tiny/ "$pkgdir/usr/share/icons/posy-white-tiny" cp -dr --no-preserve=ownership posy-white/ "$pkgdir/usr/share/icons/posy-white"
cp -dr --no-preserve=ownership posy-black-tiny/ "$pkgdir/usr/share/icons/posy-black-tiny" 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"
} }