mirror of
				https://gitlab.com/ykkzde/posy-cursors
				synced 2025-06-13 20:53:52 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			33 lines
		
	
	
		
			1.5 KiB
		
	
	
	
		
			Bash
		
	
	
	
	
	
			
		
		
	
	
			33 lines
		
	
	
		
			1.5 KiB
		
	
	
	
		
			Bash
		
	
	
	
	
	
# Maintainer: Ykkzde <dmitry@ykkz.de>
 | 
						|
 | 
						|
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)
 | 
						|
url="https://gitlab.com/ykkzde/posy-cursors"
 | 
						|
license=(unknown)
 | 
						|
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() {
 | 
						|
    echo "-------------------------------------------------------"
 | 
						|
    echo "-------------------------------------------------------"
 | 
						|
    echo "-------------------------------------------------------"
 | 
						|
    ls -l
 | 
						|
    echo "-------------------------------------------------------"
 | 
						|
    echo "-------------------------------------------------------"
 | 
						|
    echo "-------------------------------------------------------"
 | 
						|
    ls -l *
 | 
						|
    echo "-------------------------------------------------------"
 | 
						|
    echo "-------------------------------------------------------"
 | 
						|
    echo "-------------------------------------------------------"
 | 
						|
    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"
 | 
						|
}
 |