blob: f866568df69e133881fd2140155967d03f40bc94 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
# Maintainer: Timothy Lee <timothy.ty.lee@gmail.com>
pkgname=libreoffice-extension-vrt-network-equipment
pkgver=1.2.0
pkgrel=4
pkgdesc='This extension provides galleries of network equipment shapes for LibreOffice, designed in a similar style to those offered by Microsoft Visio®.'
arch=('any')
url='http://www.vrt.com.au/downloads/vrt-network-equipment'
license=('CC-by-sa-v3')
groups=('libreoffice-extensions')
depends=('libreoffice')
_pkgname=vrtnetworkequipment
_pkgver=1-2-0
source=("https://extensions.libreoffice.org/assets/downloads/z/vrtnetworkequipment-1-2-0-lo.oxt")
noextract=(${source[@]##*/})
sha1sums=('30b3487811a1ff78c193d3426fa940d7a9e7cbbc')
package() {
_DESTDIR="$pkgdir/usr/lib/libreoffice/share/extensions/$_pkgname"
install -dm755 "${_DESTDIR}"
bsdtar -xf "$srcdir/${source[0]##*/}" -C "${_DESTDIR}"
chmod -R g-w,o-w "${_DESTDIR}"
}
|