summarylogtreecommitdiffstats
path: root/PKGBUILD
blob: c1284cc81f037ecf51c7047c225f8019984c0fcc (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
# Maintainer: Guido Iodice <guido[dot]iodice[at]gmail[dot]com>

pkgname=kio-stash
pkgver=1.0
pkgrel=3
pkgdesc='A kio slave and daemon to stash discontinuous file selections'
arch=(x86_64)
url="https://www.kde.org/"
license=(GPL2)
depends=(gcc-libs
         glibc
         kcoreaddons
         kdbusaddons
         kio
         qt6-base)
makedepends=(extra-cmake-modules)
source=('git+https://invent.kde.org/utilities/kio-stash.git?commit=412b3621c41ce476e6a6fea15829bb4098d9aa79')
sha256sums=('SKIP')

build() {
  cmake -B build -S $pkgname \
    -DBUILD_TESTING=OFF
  cmake --build build
}

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