# Maintainer: Karol "Kenji Takahashi" Woźniak pkgname=copyq _realname=CopyQ pkgver=3.0.2 pkgrel=1 pkgdesc="Clipboard manager with searchable and editable history." url="https://github.com/hluk/CopyQ" depends=('libxtst' 'qt5-script' 'hicolor-icon-theme' 'desktop-file-utils') optdepends=('copyq-plugin-itemweb') makedepends=('cmake' 'qt5-tools' 'qt5-svg') license=('GPL3') arch=('i686' 'x86_64') source=("https://github.com/hluk/${_realname}/archive/v${pkgver}.tar.gz") md5sums=('f5b1466e33b0b4f3426fe14d0033db25') install=copyq.install build() { mkdir "${srcdir}/build" cd "${srcdir}/build" cmake \ -DWITH_WEBKIT=0 \ -DCMAKE_INSTALL_PREFIX=/usr \ -DWITH_QT5=TRUE \ "${srcdir}/${_realname}-${pkgver}" make } package() { cd "${srcdir}/build" make DESTDIR="${pkgdir}" install } # vim:set ts=4 sw=4 et: