blob: e948680a55f36a982afe7a27d2c2cd327fb255c5 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
# Maintainer: Boris-Chengbiao Zhou <bobo1239@web.de>
pkgname=mobilesheets-companion
pkgver=4.1.2
pkgrel=1
pkgdesc='Companion app for MobileSheets to remotely manage sheet libraries.'
url='https://www.zubersoft.com/mobilesheets/companion/'
depends=('glibc')
makedepends=('dpkg')
source=("https://www.zubersoft.download/MobileSheetsCompanion.deb")
sha512sums=("SKIP")
arch=('x86_64')
pkgver() {
dpkg-deb --show --showformat='${Version}' MobileSheetsCompanion.deb
}
package() {
dpkg-deb -xv MobileSheetsCompanion.deb "${pkgdir}"
# Fix up directory permissions
find "${pkgdir}" -type d -exec chmod 755 {} +
}
|