mirror of
				https://github.com/rkd77/elinks.git
				synced 2025-10-21 19:54:04 -04:00 
			
		
		
		
	
		
			
				
	
	
		
			14 lines
		
	
	
		
			381 B
		
	
	
	
		
			Bash
		
	
	
	
	
	
			
		
		
	
	
			14 lines
		
	
	
		
			381 B
		
	
	
	
		
			Bash
		
	
	
	
	
	
| cd
 | |
| wget https://ftp.gnu.org/pub/gnu/libiconv/libiconv-1.17.tar.gz
 | |
| rm -rf libiconv-1.17
 | |
| tar xf libiconv-1.17.tar.gz
 | |
| cd libiconv-1.17
 | |
| ./configure --host=i686-w64-mingw32 --prefix=$HOME \
 | |
|         --enable-static=yes \
 | |
|         --enable-shared=no \
 | |
|         CC=i686-w64-mingw32-gcc \
 | |
|         CPPFLAGS="-I$HOME/include -Wall" \
 | |
|         LDFLAGS="-L$HOME/lib"
 | |
| make -j $(nproc)
 | |
| make install
 |