Package Details: arqiver 0.12.0-1

Git Clone URL: https://aur.archlinux.org/arqiver.git (read-only, click to copy)
Package Base: arqiver
Description: Simple Qt archive manager based on libarchive
Upstream URL: https://github.com/tsujan/Arqiver
Licenses: GPL3
Submitter: redtide
Maintainer: redtide
Last Packager: redtide
Votes: 0
Popularity: 0.000000
First Submitted: 2023-07-19 11:23 (UTC)
Last Updated: 2024-02-03 09:17 (UTC)

Latest Comments

andykluger commented on 2025-01-27 05:13 (UTC)

The following seems to work for 1.0.0:

# Maintainer: redtide <redtid3@gmail.com>

_name=Arqiver
pkgname=arqiver
pkgver=1.0.0
pkgrel=1
pkgdesc="Simple Qt archive manager based on libarchive"
arch=(x86_64)
url="https://github.com/tsujan/$_name"
license=(GPL3)
depends=(
  libarchive
  gzip
  7zip
)
makedepends=(
  cmake
  qt6-svg
  qt6-tools
)
source=($url/releases/download/V$pkgver/$_name-$pkgver.tar.xz)
sha512sums=('8112f7eb21cb3aa57501acfadf1eb5f3d8f0d7ce4dc7c94f75bfa21e3d6a2013feb289b660881e36a59ed688010ac525e51943a257cf0c92f3f6840112f3062d')

build() {
  cd "$_name-$pkgver"
  local options=(
    -B build
    -D CMAKE_BUILD_TYPE=None
    -D CMAKE_INSTALL_PREFIX=/usr
    -S .
    -W no-dev
  )
  cmake "${options[@]}"
  cmake --build build --verbose
}

package() {
  cd "$_name-$pkgver"
  DESTDIR="$pkgdir" cmake --install build
}