pkgname='enpass-bin' _pkgname='enpass' pkgver=6.4.0.631 pkgrel=1 pkgdesc='A multiplatform password manager' arch=('x86_64') url='http://enpass.io/' license=('custom') depends=('libxss' 'lsof' 'curl') provides=("${_pkgname}") install='enpass-bin.install' source=("https://apt.enpass.io/pool/main/e/enpass/${_pkgname}_${pkgver}_amd64.deb") sha256sums=('c433fbf2c1f5fc381ccaad1df9f775a80180e5c45715123387597534d8d9de56') # Disable strip as otherwise the browser extension will not work options=('!strip') package() { # Extract data tar xfz "${srcdir}/data.tar.gz" -C "${pkgdir}" # Remove unnecessary files which are included in the .deb # find "${pkgdir}" -name '*~' -delete # Update permissions to match the default system ones chmod 755 "${pkgdir}/opt/" find "${pkgdir}/usr/" -type d -exec chmod 755 {} \; # Symlink "runenpass.sh" to "/usr/bin" so it is accessible via cli mkdir -p "${pkgdir}/usr/bin" ln -s '/opt/enpass/Enpass' "${pkgdir}/usr/bin/enpass" } # vim: set syntax=sh: