48 lines
		
	
	
		
			707 B
		
	
	
	
		
			Bash
		
	
	
	
	
	
		
		
			
		
	
	
			48 lines
		
	
	
		
			707 B
		
	
	
	
		
			Bash
		
	
	
	
	
	
|   | version=\
 | ||
|  | ( | ||
|  |     "1.3.0" | ||
|  | ) | ||
|  | 
 | ||
|  | url=\
 | ||
|  | ( | ||
|  |     "http://downloads.xiph.org/releases/ogg/libogg-${version}.tar.xz" | ||
|  | ) | ||
|  | 
 | ||
|  | md5=\
 | ||
|  | ( | ||
|  |     "84a35715170f2cd4c77a4448772b95d5" | ||
|  | ) | ||
|  | 
 | ||
|  | configure() | ||
|  | { | ||
|  |     ./configure \
 | ||
|  |         --prefix="${cfg_dir_toolchain_sysroot}/usr" \
 | ||
|  |         --target="$cfg_target_canonical" \
 | ||
|  |         --host="$cfg_target_canonical" \
 | ||
|  |         --build="$cfg_host_canonical" | ||
|  | } | ||
|  | 
 | ||
|  | build() | ||
|  | { | ||
|  |     $cmd_make | ||
|  | } | ||
|  | 
 | ||
|  | host_install() | ||
|  | { | ||
|  |     $cmd_make install | ||
|  | } | ||
|  | 
 | ||
|  | target_install() | ||
|  | { | ||
|  |   # Libs:  | ||
|  |   for f in "$cfg_dir_toolchain_sysroot/usr/lib/"libogg*.so*; do | ||
|  |     if [ -L "$f" ]; then | ||
|  |       $cmd_cp "$f" "$cfg_dir_rootfs/usr/lib" | ||
|  |     else | ||
|  |       $cmd_target_strip -v "$f" -o "$cfg_dir_rootfs/usr/lib/$(basename "$f")" | ||
|  |     fi | ||
|  |   done | ||
|  | } | ||
|  | 
 | ||
|  | 
 |