31 lines
		
	
	
		
			631 B
		
	
	
	
		
			Bash
		
	
	
	
	
	
			
		
		
	
	
			31 lines
		
	
	
		
			631 B
		
	
	
	
		
			Bash
		
	
	
	
	
	
pkgname=pokerust-git
 | 
						|
pkgdesc="Pokemon Colorscripts written in Rust"
 | 
						|
_gitname=pokerust
 | 
						|
pkgver=r5.7fe497e
 | 
						|
pkgrel=1
 | 
						|
arch=('x86_64')
 | 
						|
url="https://github.com/Vomitblood/$_gitname"
 | 
						|
license=('GPL')
 | 
						|
depends=('glibc' 'gcc-libs')
 | 
						|
makedepends=('git' 'cargo')
 | 
						|
provides=("$_gitname")
 | 
						|
source=("git+$url.git")
 | 
						|
md5sums=('SKIP')
 | 
						|
options=(!debug)
 | 
						|
PKGEXT='.pkg.tar'
 | 
						|
 | 
						|
pkgver() {
 | 
						|
  cd "$_gitname"
 | 
						|
  printf "r%s.%s" "$(git rev-list --count HEAD)" "$(git rev-parse --short HEAD)"
 | 
						|
}
 | 
						|
 | 
						|
build() {
 | 
						|
  cd "$srcdir/$_gitname"
 | 
						|
  cargo build --release
 | 
						|
}
 | 
						|
 | 
						|
package() {
 | 
						|
  cd "$srcdir/$_gitname"
 | 
						|
  install -Dm755 target/release/$_gitname "$pkgdir/usr/bin/$_gitname"
 | 
						|
}
 |