# Maintainer: "Amhairghin" Oscar Garcia Amor (https://ogarcia.me) pkgname=mongodb-compass pkgver=1.32.4 pkgrel=1 pkgdesc="The MongoDB GUI" arch=('x86_64') url="https://www.mongodb.com/products/compass" license=('custom') depends=('alsa-lib' 'gtk3' 'libsecret' 'libxss' 'libxtst' 'nss') optdepends=('org.freedesktop.secrets') source=("https://downloads.mongodb.com/compass/${pkgname}_${pkgver}_amd64.deb") noextract=("${pkgname}_${pkgver}_amd64.deb") b2sums=('24b628b0419d9ab048d52ad1cf3dbcb8796f7b1ba0a48ac9632b9063c93c901eaa43e69d3f516015ae09021e04d3d578d96f1a8fd8d71aed325531c99dfa7d21') package() { bsdtar -O -xf "${pkgname}_${pkgver}"*.deb data.tar.xz | bsdtar -C "$pkgdir" -xJf - # Permission fix find "${pkgdir}" -type d -exec chmod 755 {} + find "${pkgdir}" -type f -exec chmod 644 {} + chmod +x "${pkgdir}"/usr/lib/mongodb-compass/"MongoDB Compass" # Remove all unnecessary stuff rm -rf "${pkgdir}/usr/share/lintian" rm -rf "${pkgdir}/usr/share/doc" # Install license install -dm755 ${pkgdir}/usr/share/licenses/${pkgname} ln -s /usr/share/${pkgname}/LICENSE ${pkgdir}/usr/share/licenses/${pkgname} }