forked from hasufell/hasufell-repository
		
	
		
			
				
	
	
		
			28 lines
		
	
	
		
			490 B
		
	
	
	
		
			Bash
		
	
	
	
	
	
			
		
		
	
	
			28 lines
		
	
	
		
			490 B
		
	
	
	
		
			Bash
		
	
	
	
	
	
# Copyright 2016 Julian Ospald <hasufell@posteo.de>
 | 
						|
# Distributed under the terms of the GNU General Public License v2
 | 
						|
 | 
						|
MODULE_VERSION=001
 | 
						|
 | 
						|
require github [ user=gregkh tag=v${MODULE_VERSION} ]
 | 
						|
 | 
						|
SUMMARY="Simple alternative to vim's 'xxd -i' mode"
 | 
						|
 | 
						|
LICENCES="GPL-2"
 | 
						|
SLOT="0"
 | 
						|
PLATFORMS="~amd64 ~x86"
 | 
						|
MYOPTIONS=""
 | 
						|
 | 
						|
DEPENDENCIES="
 | 
						|
    run:
 | 
						|
        dev-lang/perl:*
 | 
						|
        dev-perl/File-Slurp
 | 
						|
"
 | 
						|
 | 
						|
WORK=${WORKBASE}/${PN}-${MODULE_VERSION}
 | 
						|
 | 
						|
src_install() {
 | 
						|
    dobin xxdi.pl
 | 
						|
    dodoc README.md
 | 
						|
}
 | 
						|
 |