29 lines
		
	
	
		
			606 B
		
	
	
	
		
			Bash
		
	
	
	
	
	
			
		
		
	
	
			29 lines
		
	
	
		
			606 B
		
	
	
	
		
			Bash
		
	
	
	
	
	
# Copyright 2016 Julian Ospald <hasufell@posteo.de>
 | 
						|
# Distributed under the terms of the GNU General Public License v2
 | 
						|
 | 
						|
require cmake [ api=2 ]
 | 
						|
 | 
						|
SUMMARY="A tool to unpack installers created by Inno Setup"
 | 
						|
HOMEPAGE="http://constexpr.org/innoextract/"
 | 
						|
DOWNLOADS="http://constexpr.org/innoextract/files/${PNV}.tar.gz"
 | 
						|
 | 
						|
LICENCES="ZLIB"
 | 
						|
SLOT="0"
 | 
						|
PLATFORMS="~amd64 ~x86"
 | 
						|
 | 
						|
DEPENDENCIES="
 | 
						|
    build+run:
 | 
						|
        app-arch/xz
 | 
						|
        dev-libs/boost
 | 
						|
"
 | 
						|
 | 
						|
REMOTE_IDS="github:dscharrer/${PN}"
 | 
						|
 | 
						|
CMAKE_SRC_CONFIGURE_PARAMS=(
 | 
						|
    -DUSE_LZMA=ON
 | 
						|
    -DSET_OPTIMIZATION_FLAGS=OFF
 | 
						|
    -DSTRICT_USE=ON
 | 
						|
    -DWITH_CONV=builtin
 | 
						|
)
 | 
						|
 |