1
0
mirror of https://gitlab.com/ykkzde/posy-cursors synced 2024-09-29 01:50:47 +00:00
archive-posy-cursors/pkg/aur/posy-cursors/PKGBUILD

33 lines
1.5 KiB
Bash
Raw Normal View History

2020-06-24 17:25:30 +00:00
# Maintainer: Ykkzde <dmitry@ykkz.de>
2019-10-31 22:13:37 +00:00
pkgname=posy-cursors
pkgver=0.0.0 # automatically set in CI, see: /.gitlab-ci.yml
pkgrel=1
pkgdesc="Port of Posy's improved cursors"
arch=(any)
2020-06-24 17:25:30 +00:00
url="https://gitlab.com/ykkzde/posy-cursors"
2019-10-31 22:13:37 +00:00
license=(unknown)
2020-06-24 17:38:04 +00:00
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
2019-10-31 22:13:37 +00:00
sha256sums=('SKIP') # automatically set in CI, see: /.gitlab-ci.yml
package() {
2020-06-24 17:44:38 +00:00
echo "-------------------------------------------------------"
echo "-------------------------------------------------------"
echo "-------------------------------------------------------"
ls -l
echo "-------------------------------------------------------"
echo "-------------------------------------------------------"
echo "-------------------------------------------------------"
ls -l *
echo "-------------------------------------------------------"
echo "-------------------------------------------------------"
echo "-------------------------------------------------------"
2020-06-24 18:13:09 +00:00
cd $pkgname-v$pkgver-themes/themes
2020-06-24 17:38:04 +00:00
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"
2019-10-31 22:13:37 +00:00
}