27 lines
		
	
	
		
			716 B
		
	
	
	
		
			Bash
		
	
	
	
	
	
			
		
		
	
	
			27 lines
		
	
	
		
			716 B
		
	
	
	
		
			Bash
		
	
	
	
	
	
| # Template file for 'libfixposix'
 | |
| pkgname=libfixposix
 | |
| version=0.4.3
 | |
| revision=1
 | |
| build_style=gnu-configure
 | |
| hostmakedepends="automake libtool pkg-config"
 | |
| short_desc="Thin wrapper over POSIX syscalls"
 | |
| maintainer="Daniel Lewan <vision360.daniel@gmail.com>"
 | |
| license="BSL-1.0"
 | |
| homepage="https://github.com/sionescu/libfixposix"
 | |
| distfiles="https://github.com/sionescu/libfixposix/archive/v${version}.tar.gz"
 | |
| checksum=78fe8bcebf496520ac29b5b65049f5ec1977c6bd956640bdc6d1da6ea04d8504
 | |
| 
 | |
| pre_configure() {
 | |
| 	autoreconf -fi
 | |
| }
 | |
| 
 | |
| libfixposix-devel_package() {
 | |
| 	depends="${sourcepkg}-${version}_${revision}"
 | |
| 	short_desc+=" - development files"
 | |
| 	pkg_install() {
 | |
| 		vmove "usr/lib/*.so"
 | |
| 		vmove usr/lib/pkgconfig
 | |
| 		vmove usr/include
 | |
| 	}
 | |
| }
 | 
