# This PKGBUILD is not published to the AUR # Maintainer: Vladyslav Aviedov pkgname=virsh-ss pkgver=1.1.0 pkgrel=1 pkgdesc="Send string to libvirt virtual machine" arch=('x86_64') url='https://github.com/vladaviedov/virsh-ss' license=('GPL-3.0-only') depends=('libvirt' 'nanorl') makedepends=('git') source=("${pkgname}-${pkgver}::git+https://github.com/vladaviedov/virsh-ss.git#tag=v${pkgver}") sha256sums=('SKIP') build() { cd "${pkgname}-${pkgver}" make -j"$(nproc)" } package() { cd "${pkgname}-${pkgver}" make install PREFIX="$pkgdir/usr" }