# Maintainer: orhun # https://github.com/orhun/pkgbuilds pkgname=menyoki-bin pkgver=1.7.0 pkgrel=1 pkgdesc="Screen{shot,cast} and perform ImageOps on the command line" arch=('x86_64') url="https://github.com/orhun/menyoki" license=('GPL3') depends=('gcc-libs' 'libxrandr') optdepends=('slop: area selection support') conflicts=("${pkgname%-bin}") provides=("${pkgname%-bin}") source_x86_64=("$url/releases/download/v$pkgver/${pkgname%-bin}-$pkgver-x86_64-unknown-linux-gnu.tar.gz"{,.sig}) sha512sums_x86_64=('e2d54c2c31144b1967e414dc66a6f37884ae8ff1d8fe778c9a79762c0b1261f2282b0536e03c1d7c65ea2dcb48867a806fc84d09412f71e8e4820d5fb30a197d' 'SKIP') validpgpkeys=('9965F7E78C54A004D475D6FA53F218C35C1DC8B1') # menyoki package() { cd "${pkgname%-bin}-$pkgver" install -Dm 755 "${pkgname%-bin}" -t "${pkgdir}/usr/bin" install -Dm 644 README.md -t "$pkgdir/usr/share/doc/$pkgname" install -Dm 644 "man/${pkgname%-bin}.1" -t "$pkgdir/usr/share/man/man1" install -Dm 644 "man/${pkgname%-bin}.conf.5" -t "$pkgdir/usr/share/man/man5" install -Dm 644 "completions/${pkgname%-bin}.bash" "${pkgdir}/usr/share/bash-completion/completions/${pkgname%-bin}" install -Dm 644 "completions/${pkgname%-bin}.fish" -t "${pkgdir}/usr/share/fish/completions" install -Dm 644 "completions/${pkgname%-bin}.zsh" "${pkgdir}/usr/share/zsh/site-functions/_${pkgname%-bin}" }