forked from hasufell/hasufell-repository
		
	
		
			
				
	
	
		
			25 lines
		
	
	
		
			525 B
		
	
	
	
		
			Bash
		
	
	
	
	
	
			
		
		
	
	
			25 lines
		
	
	
		
			525 B
		
	
	
	
		
			Bash
		
	
	
	
	
	
# Copyright 2016 Julian Ospald <hasufell@posteo.de>
 | 
						|
# Distributed under the terms of the GNU General Public License v2
 | 
						|
 | 
						|
MY_PN="monitor"
 | 
						|
 | 
						|
SUMMARY="Monitoring application for www-servers/hiawatha"
 | 
						|
HOMEPAGE="http://www.hiawatha-webserver.org/howto/monitor"
 | 
						|
DOWNLOADS="http://www.hiawatha-webserver.org/files/${MY_PN}-${PV}.tar.gz "
 | 
						|
 | 
						|
LICENCES="GPL-2"
 | 
						|
SLOT="0"
 | 
						|
PLATFORMS="~amd64 ~x86"
 | 
						|
 | 
						|
WORK=${WORKBASE}/${MY_PN}
 | 
						|
 | 
						|
src_install () {
 | 
						|
    default
 | 
						|
 | 
						|
    edo rm -f ChangeLog README LICENSE
 | 
						|
 | 
						|
    insinto /usr/share/${PN}
 | 
						|
    doins -r *
 | 
						|
}
 | 
						|
 |