maintainer="Antoni Aloy <aaloytorrens@gmail.com>"
# Contributor: Zachary Lee Andrews <zcrayfish@gmail.com>
pkgname=lxqt-archiver
pkgver=1.2.0
pkgrel=0
pkgdesc="Simple and lightweight desktop-agnostic Qt file archiver"
url="https://github.com/lxqt/lxqt-archiver"
arch="all !armhf"
license="LGPL-2.0-or-later"
depends="tar"
makedepends="
	cmake samurai lxqt-build-tools qt6-qttools-dev
	libfm-qt-dev json-glib-dev menu-cache-dev libexif-dev
	"
options="!check" # No testsuite
subpackages="$pkgname-lang"
source="https://github.com/lxqt/lxqt-archiver/releases/download/$pkgver/lxqt-archiver-$pkgver.tar.xz"

build() {
	if [ "$CBUILD" != "$CHOST" ]; then
		CMAKE_CROSSOPTS="-DCMAKE_SYSTEM_NAME=Linux -DCMAKE_HOST_SYSTEM_NAME=Linux"
	fi
	cmake -B build -G Ninja \
		-DCMAKE_BUILD_TYPE=Release \
		-DCMAKE_INSTALL_PREFIX=/usr \
		-DCMAKE_INSTALL_LIBDIR=lib \
		-DBUILD_SHARED_LIBS=True \
		$CMAKE_CROSSOPTS .
	cmake --build build
}

package() {
	DESTDIR="$pkgdir" cmake --build build --target install
}

lang() {
	install_if="lang $pkgname=$pkgver-r$pkgrel"
	amove usr/share/$pkgname/translations
}

sha512sums="
957e675829835ae8d930a65657b86eea991ea60b39d69c1532f282a495560cdf4ce9a273e8924ea7c9e685b728495e9266ebf5b1ae332ed22b68310bd9bf64db  lxqt-archiver-1.2.0.tar.xz
"
