subrepo: subdir: "aurutils" merged: "1d51dda" upstream: origin: "https://aur.archlinux.org/aurutils" branch: "master" commit: "1d51dda" git-subrepo: version: "0.4.3" origin: "???" commit: "???"
		
			
				
	
	
		
			38 lines
		
	
	
		
			1.1 KiB
		
	
	
	
		
			Bash
		
	
	
	
	
	
			
		
		
	
	
			38 lines
		
	
	
		
			1.1 KiB
		
	
	
	
		
			Bash
		
	
	
	
	
	
# Maintainer: Alad Wenter <https://github.com/AladW>
 | 
						|
pkgname=aurutils
 | 
						|
pkgver=3.1.2
 | 
						|
pkgrel=2
 | 
						|
pkgdesc='helper tools for the arch user repository'
 | 
						|
url='https://github.com/AladW/aurutils'
 | 
						|
arch=('any')
 | 
						|
license=('custom:ISC')
 | 
						|
source=("$url/releases/download/$pkgver/$pkgname-$pkgver.tar.gz"
 | 
						|
        "$url/releases/download/$pkgver/$pkgname-$pkgver.tar.gz.signify"
 | 
						|
        'aurutils.pub')
 | 
						|
changelog=aurutils.changelog
 | 
						|
install=aurutils.install
 | 
						|
sha256sums=('86a80ae8327aeeb4932c7709767b2be5fae19281a5bcc78b2b10197e97c32afb'
 | 
						|
            'SKIP'
 | 
						|
            'a2c32b0dba4da40b83ff31cce48a00faed5ed2f663c060a865d31caeb1e4ed39')
 | 
						|
depends=('git' 'jq' 'pacutils' 'curl')
 | 
						|
makedepends=('signify')
 | 
						|
optdepends=('bash-completion: bash completion'
 | 
						|
            'zsh: zsh completion'
 | 
						|
            'devtools: aur-chroot'
 | 
						|
            'vifm: default pager')
 | 
						|
 | 
						|
prepare() {
 | 
						|
    signify -V -p aurutils.pub -m "$pkgname-$pkgver".tar.gz \
 | 
						|
            -x "$pkgname-$pkgver".tar.gz.signify
 | 
						|
}
 | 
						|
 | 
						|
build() {
 | 
						|
    cd "$pkgname-$pkgver"
 | 
						|
    make
 | 
						|
}
 | 
						|
 | 
						|
package() {
 | 
						|
    cd "$pkgname-$pkgver"
 | 
						|
    make DESTDIR="$pkgdir" install
 | 
						|
}
 |