blob: 3760e494b9f63173eb0ea9316b544304900aa299 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
|
# Maintainer: Mohamed Amine Zghal (medaminezghal) <medaminezghal at outlook dot com>
pkgname=libreoffice-style-yaru-fullcolor
_pkgver=2023-07-04
pkgver=${_pkgver//-/.}
pkgrel=2
pkgdesc="A fullcolor icon pack for Libreoffice of the awesome Yaru theme."
arch=('any')
url="https://github.com/ubuntu/$pkgname"
license=('LGPL3')
depends=('libreoffice')
makedepends=('zip' 'svgo' 'optipng' 'python-cairosvg')
source=(https://github.com/ubuntu/$pkgname/archive/refs/tags/$_pkgver.tar.gz)
sha512sums=('0999b103866d13a405f38871c8a6d77df1cff71109e2ea434da426b72c9412bbdc82674dfc8a1491a104fa41d9df4fb5fc4956851efb73faf84d00629b3dd348')
package() {
cd "$pkgname-$_pkgver"
./build.sh -e
install -vd "$pkgdir/usr/lib/libreoffice/share/config/"
install -v "dist/images_yaru.zip" "$pkgdir/usr/lib/libreoffice/share/config/"
install -v "dist/images_yaru_svg.zip" "$pkgdir/usr/lib/libreoffice/share/config/"
install -v "dist/images_yaru_mate.zip" "$pkgdir/usr/lib/libreoffice/share/config/"
install -v "dist/images_yaru_mate_svg.zip" "$pkgdir/usr/lib/libreoffice/share/config/"
}
|