41 lines
		
	
	
		
			1.1 KiB
		
	
	
	
		
			Bash
		
	
	
	
	
	
			
		
		
	
	
			41 lines
		
	
	
		
			1.1 KiB
		
	
	
	
		
			Bash
		
	
	
	
	
	
# Maintainer: Leca <leca@foxarmy.org>
 | 
						|
pkgname=$pkgname
 | 
						|
pkgver=$pkgver
 | 
						|
pkgrel=$pkgrel
 | 
						|
epoch=
 | 
						|
pkgdesc="Utility for parsing checks(receipts) to csv"
 | 
						|
arch=('x86_64')
 | 
						|
url="https://git.foxarmy.org/leca/checks-parser"
 | 
						|
license=('GPL-3.0-or-later')
 | 
						|
groups=()
 | 
						|
depends=('qt5-base' 'opencv' 'zbar' 'nlohmann-json' 'tesseract' 'qrencode' 'boost')
 | 
						|
makedepends=('cmake' 'make' 'gcc' 'git' 'qt5-tools')
 | 
						|
checkdepends=()
 | 
						|
optdepends=('tesseract-data-rus: scan russian checks with OCR')
 | 
						|
provides=()
 | 
						|
conflicts=("checks-parser-git")
 | 
						|
replaces=()
 | 
						|
backup=()
 | 
						|
options=()
 | 
						|
install=
 | 
						|
changelog=
 | 
						|
_releasesurl=https://git.foxarmy.org/leca/checks-parser/releases/download/$pkgver
 | 
						|
source=("checks-parser-bin::https+$releaseurl/checks-parser-git-${pkgver}_nightly-$pkgrel-x86_64.pkg.tar.zst")
 | 
						|
noextract=()
 | 
						|
sha256sums=('SKIP')
 | 
						|
 | 
						|
build() {
 | 
						|
	cd "$pkgname"
 | 
						|
	mkdir build && cd build
 | 
						|
	cmake -DBUILD_TRANSLATIONS=on ..
 | 
						|
	make -j ${nproc}
 | 
						|
}
 | 
						|
 | 
						|
package() {
 | 
						|
        cd "$pkgname"
 | 
						|
	cd build
 | 
						|
	install -Dm644 LICENSE "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
 | 
						|
	##install -Dm755
 | 
						|
	make DESTDIR="$pkgdir/" PREFIX="/usr" install
 | 
						|
}
 |