зеркало из
				https://github.com/FeralInteractive/gamemode.git
				synced 2025-10-31 14:04:14 +01:00 
			
		
		
		
	
		
			
				
	
	
		
			31 строка
		
	
	
		
			702 B
		
	
	
	
		
			Bash
		
	
	
	
	
	
			
		
		
	
	
			31 строка
		
	
	
		
			702 B
		
	
	
	
		
			Bash
		
	
	
	
	
	
| # Maintainer: Ysblokje <ysblokje at gmail dot com>
 | |
| pkgname=('gamemode-git')
 | |
| pkgver='1.3-dev'
 | |
| pkgrel=1
 | |
| pkgdesc="GameMode is a daemon/lib combo for Linux that allows games to request a set of optimisations be temporarily applied to the host OS."
 | |
| arch=('x86_64')
 | |
| url="https://github.com/FeralInteractive/gamemode.git"
 | |
| license=('MIT')
 | |
| depends=('systemd' 'polkit')
 | |
| makedepends=('meson' 'pkg-config')
 | |
| provides=('gamemode')
 | |
| source=("git+https://github.com/FeralInteractive/gamemode.git")
 | |
| sha256sums=('SKIP')
 | |
| 
 | |
| pkgver() {
 | |
|     cd gamemode
 | |
|     echo $(git rev-parse --short HEAD)
 | |
| }
 | |
| 
 | |
| build() {
 | |
|   cd gamemode
 | |
|   arch-meson build
 | |
|   cd build
 | |
|   ninja
 | |
| }
 | |
| 
 | |
| package() {
 | |
|   cd gamemode/build
 | |
|   DESTDIR=$pkgdir ninja install
 | |
| }
 | 
