sha256 of GitHub's v0.1.4 archive, verified stable across two downloads. Co-Authored-By: Claude Opus 5 (1M context) <[email protected]> Claude-Session: https://claude.ai/code/session_01BxDf7HqD1xPnsZP8wt3NTk
49 lines
1.1 KiB
Bash
49 lines
1.1 KiB
Bash
# SPDX-FileCopyrightText: 2026 ToServeTheKing <[email protected]>
|
|
# SPDX-License-Identifier: GPL-3.0-or-later
|
|
|
|
# Maintainer: Austin Bennett <austin at thebennett dot net>
|
|
pkgname=kareer
|
|
pkgver=0.1.4
|
|
pkgrel=1
|
|
pkgdesc="Job application tracker with a Sankey pipeline view and a scriptable CLI (Kirigami)"
|
|
arch=('x86_64')
|
|
url="https://github.com/toservetheking/Kareer"
|
|
license=('GPL-3.0-or-later')
|
|
depends=(
|
|
hicolor-icon-theme
|
|
kcolorscheme
|
|
kconfig
|
|
kcoreaddons
|
|
kcrash
|
|
ki18n
|
|
kiconthemes
|
|
kirigami
|
|
kirigami-addons
|
|
qqc2-desktop-style
|
|
qt6-base
|
|
qt6-declarative
|
|
)
|
|
makedepends=(
|
|
cmake
|
|
extra-cmake-modules
|
|
)
|
|
checkdepends=(appstream)
|
|
source=("$pkgname-$pkgver.tar.gz::$url/archive/v$pkgver.tar.gz")
|
|
sha256sums=('e73e7a552bca68fc3f869c96efc607f0862564b3e5f99a505ff33b618bc5cb71')
|
|
|
|
build() {
|
|
cmake -B build -S "Kareer-$pkgver" \
|
|
-DCMAKE_BUILD_TYPE=None \
|
|
-DCMAKE_INSTALL_PREFIX=/usr \
|
|
-DBUILD_TESTING=ON
|
|
cmake --build build
|
|
}
|
|
|
|
check() {
|
|
QT_QPA_PLATFORM=offscreen ctest --test-dir build --output-on-failure
|
|
}
|
|
|
|
package() {
|
|
DESTDIR="$pkgdir" cmake --install build
|
|
}
|