18 lines
		
	
	
		
			417 B
		
	
	
	
		
			Makefile
		
	
	
		
			Executable File
		
	
	
			
		
		
	
	
			18 lines
		
	
	
		
			417 B
		
	
	
	
		
			Makefile
		
	
	
		
			Executable File
		
	
	
#!/usr/bin/make -f
 | 
						|
 | 
						|
include /usr/share/dpkg/default.mk
 | 
						|
 | 
						|
export GEM2DEB_TEST_RUNNER = --check-dependencies
 | 
						|
 | 
						|
%:
 | 
						|
	dh $@ --buildsystem=ruby --with ruby
 | 
						|
 | 
						|
override_dh_auto_install:
 | 
						|
	dh_auto_install
 | 
						|
 | 
						|
newtarball = new$(DEB_VERSION_UPSTREAM).tar.gz
 | 
						|
get-orig-source:
 | 
						|
	wget --continue -O $(newtarball) \
 | 
						|
	https://github.com/puppetlabs/puppet-strings/releases/v$(DEB_VERSION_UPSTREAM).tar.gz
 | 
						|
	mk-origtargz --rename $(newtarball)
 |