23 lines
		
	
	
		
			521 B
		
	
	
	
		
			Bash
		
	
	
	
	
	
			
		
		
	
	
			23 lines
		
	
	
		
			521 B
		
	
	
	
		
			Bash
		
	
	
	
	
	
# Maintainer: Jack L. Frost <fbt@fleshless.org>
 | 
						|
# % Trigger: 1434966060 %
 | 
						|
 | 
						|
pkgname='zfh-tools'
 | 
						|
pkgver='1.6.3'
 | 
						|
pkgrel='1'
 | 
						|
pkgdesc='A set of tools for zfh.so'
 | 
						|
url='https://git.fleshless.org/zfh-tools'
 | 
						|
arch=( 'any' )
 | 
						|
license=( 'ISC' )
 | 
						|
depends=( 'bash' )
 | 
						|
 | 
						|
source=( "https://git.fleshless.org/zfh-tools/snapshot/zfh-tools-${pkgver}.tar.gz" )
 | 
						|
 | 
						|
package() {
 | 
						|
	cd "${pkgname}-${pkgver}"
 | 
						|
 | 
						|
	install -Dm755 sup "$pkgdir/usr/bin/sup"
 | 
						|
	install -Dm755 supd "$pkgdir/usr/bin/supd"
 | 
						|
}
 | 
						|
 | 
						|
sha1sums=('2d02d037f6494aa556e10f6a51b578f76c691c39')
 |