40 lines
		
	
	
		
			1.0 KiB
		
	
	
	
		
			Bash
		
	
	
	
	
	
			
		
		
	
	
			40 lines
		
	
	
		
			1.0 KiB
		
	
	
	
		
			Bash
		
	
	
	
	
	
# Template file for 'libnvme'
 | 
						|
pkgname=libnvme
 | 
						|
version=1.0
 | 
						|
revision=1
 | 
						|
build_style=meson
 | 
						|
configure_args="-Ddocs=man"
 | 
						|
hostmakedepends="pkg-config swig"
 | 
						|
makedepends="libuuid-devel json-c-devel openssl-devel python3-devel"
 | 
						|
short_desc="C Library for NVM Express on Linux"
 | 
						|
maintainer="Subhaditya Nath <sn03.general@gmail.com>"
 | 
						|
license="LGPL-2.1-or-later"
 | 
						|
homepage="https://github.com/linux-nvme/libnvme"
 | 
						|
distfiles="https://github.com/linux-nvme/libnvme/archive/v${version}.tar.gz"
 | 
						|
checksum=387524b1c24a4091a88bfb258c98c054f716da210e77702f0709164740370807
 | 
						|
 | 
						|
libnvme-devel_package() {
 | 
						|
	depends="${sourcepkg}>=${version}_${revision}"
 | 
						|
	depends+=" json-c-devel libuuid-devel openssl-devel"	# otherwise 'pkgconf libnvme' doesn't work
 | 
						|
	short_desc+=" - development files"
 | 
						|
	pkg_install() {
 | 
						|
		vmove usr/include
 | 
						|
		vmove usr/lib/pkgconfig
 | 
						|
		vmove "usr/lib/*.so"
 | 
						|
	}
 | 
						|
}
 | 
						|
 | 
						|
libnvme-doc_package() {
 | 
						|
	short_desc+=" - documentation"
 | 
						|
	pkg_install() {
 | 
						|
		vmove usr/share
 | 
						|
	}
 | 
						|
}
 | 
						|
 | 
						|
python3-libnvme_package() {
 | 
						|
	short_desc+=" - Python3 bindings"
 | 
						|
	pkg_install() {
 | 
						|
		vmove "usr/lib/python*"
 | 
						|
	}
 | 
						|
}
 |