forked from hasufell/hasufell-repository
		
	
		
			
				
	
	
		
			36 lines
		
	
	
		
			744 B
		
	
	
	
		
			Bash
		
	
	
	
	
	
			
		
		
	
	
			36 lines
		
	
	
		
			744 B
		
	
	
	
		
			Bash
		
	
	
	
	
	
| # Copyright 2016 Julian Ospald <hasufell@posteo.de>
 | |
| # Distributed under the terms of the GNU General Public License v2
 | |
| 
 | |
| require sourceforge [ project=pio suffix=tar.gz ]
 | |
| require gtk-icon-cache
 | |
| 
 | |
| SUMMARY="A clone of the popular board game The Settlers of Catan"
 | |
| 
 | |
| LICENCES="GPL-2 CCPL-Attribution-ShareAlike-4.0"
 | |
| SLOT="0"
 | |
| PLATFORMS="~amd64 ~x86"
 | |
| 
 | |
| DEPENDENCIES="
 | |
|     build:
 | |
|         dev-util/gob2
 | |
|         dev-util/intltool
 | |
|         sys-devel/gettext
 | |
|         virtual/pkg-config
 | |
|     build+run:
 | |
|         x11-libs/gtk+:3
 | |
|         x11-libs/libnotify
 | |
| "
 | |
| 
 | |
| DEFAULT_SRC_CONFIGURE_PARAMS=(
 | |
|     --enable-nls
 | |
|     --disable-help
 | |
|     --includedir=/usr/$(exhost --target)/include
 | |
|     --with-gtk
 | |
| )
 | |
| 
 | |
| src_prepare() {
 | |
|     edo intltoolize --force --automake
 | |
|     default
 | |
| }
 | |
| 
 |