subrepo: subdir: "mpdevil" merged: "83a0b99" upstream: origin: "https://aur.archlinux.org/mpdevil.git" branch: "master" commit: "83a0b99" git-subrepo: version: "0.4.3" origin: "???" commit: "???"
		
			
				
	
	
		
			24 lines
		
	
	
		
			665 B
		
	
	
	
		
			Bash
		
	
	
	
	
	
			
		
		
	
	
			24 lines
		
	
	
		
			665 B
		
	
	
	
		
			Bash
		
	
	
	
	
	
# Maintainer: Martin Wagner <martin.wagner.dev@gmail.com>
 | 
						|
 | 
						|
pkgname=mpdevil
 | 
						|
pkgver=1.5.1
 | 
						|
pkgrel=1
 | 
						|
pkgdesc="A simple music browser for MPD"
 | 
						|
arch=('any')
 | 
						|
license=('GPL3')
 | 
						|
url="https://github.com/SoongNoonien/mpdevil"
 | 
						|
depends=('python-mpd2' 'gtk3' 'libnotify' 'python-gobject' 'python-requests' 'python-beautifulsoup4')
 | 
						|
makedepends=('meson')
 | 
						|
source=("${pkgname}-${pkgver}.tar.gz::https://github.com/SoongNoonien/mpdevil/archive/v${pkgver}.tar.gz")
 | 
						|
sha256sums=('e7a0d20d7e73f07dfa4c36b38bcf3c74b109fb8f865b86e147435d089870b45a')
 | 
						|
 | 
						|
build() {
 | 
						|
  arch-meson "${pkgname}-${pkgver}" build
 | 
						|
  meson compile -C build
 | 
						|
}
 | 
						|
 | 
						|
package() {
 | 
						|
  meson install -C build --destdir "$pkgdir"
 | 
						|
}
 | 
						|
 |