19 lines
		
	
	
		
			522 B
		
	
	
	
		
			Bash
		
	
	
	
	
	
			
		
		
	
	
			19 lines
		
	
	
		
			522 B
		
	
	
	
		
			Bash
		
	
	
	
	
	
# Maintainer: David Thurstenson <thurstylark@gmail.com>
 | 
						|
pkgname=tl-makepkg
 | 
						|
pkgver=0.1
 | 
						|
pkgrel=1
 | 
						|
pkgdesc="Small utility for running makepkg, then repose to add a local non-AUR package to a custom repo"
 | 
						|
arch=('any')
 | 
						|
url="https://git.thurstylark.com/tl-makepkg.git/"
 | 
						|
license=('GPL')
 | 
						|
depends=('makepkg' 'repose')
 | 
						|
backup=(etc/tl-makepkg.conf)
 | 
						|
source=('tl-makepkg'
 | 
						|
	'tl-makepkg.conf')
 | 
						|
md5sums=()
 | 
						|
 | 
						|
package() {
 | 
						|
	install -Dm755 tl-makepkg ${pkgdir}/usr/bin/tl-makepkg
 | 
						|
	install -Dm644 tl-makepkg.conf ${pkgdir}/etc/tl-makepkg.conf
 | 
						|
}
 |