mirror of
				https://github.com/Xetibo/ReSet.git
				synced 2025-11-03 17:25:20 +01:00 
			
		
		
		
	
		
			
				
	
	
		
			20 lines
		
	
	
	
		
			515 B
		
	
	
	
		
			Bash
		
	
	
	
	
	
			
		
		
	
	
			20 lines
		
	
	
	
		
			515 B
		
	
	
	
		
			Bash
		
	
	
	
	
	
# Maintainer: Fabio Lenherr <dashie@dashie.org>
 | 
						|
 | 
						|
pkgname=reset
 | 
						|
pkgver=1.0.0
 | 
						|
pkgrel=0
 | 
						|
arch=('x86_64')
 | 
						|
pkgdir="/usr/bin/${pkgname}"
 | 
						|
pkgdesc="A wip universal Linux settings application."
 | 
						|
depends=('rust' 'gtk4' 'dbus')
 | 
						|
 | 
						|
build() {
 | 
						|
	cargo build --release
 | 
						|
}
 | 
						|
 | 
						|
package() {
 | 
						|
	cd ..
 | 
						|
	install -Dm755 target/release/"$pkgname" "$pkgdir"/usr/bin/"$pkgname"
 | 
						|
	install -Dm644 "$pkgname.desktop" "$pkgdir/usr/share/applications/$pkgname.desktop"
 | 
						|
	install -Dm644 "src/resources/icons/ReSet.svg" "$pkgdir/usr/share/pixmaps/ReSet.svg"
 | 
						|
}
 |