blob: 569d2c989181778f924b326f488d5d726ef0c273 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
pkgname=cliphist-cpp
pkgver=1.1.0
pkgrel=1
pkgdesc="Wayland clipboard manager history GUI and daemon written in C++ and GTK3, configurable via ~/.config/cliphist/config.ini"
arch=('x86_64' 'aarch64')
url="https://github.com/filonsli/cliphist-cpp"
license=('MIT')
depends=('gtk3' 'gdk-pixbuf2' 'wl-clipboard')
source=('main.cpp' 'Makefile' 'cliphist-cpp.service' 'cliphist-cpp.desktop')
sha256sums=('SKIP' 'SKIP' 'SKIP' 'SKIP')
build() {
make
}
package() {
make DESTDIR="${pkgdir}" PREFIX="/usr" install
}
|