blob: 10de64b6404a4055b2c6ad7cd4039f32263f3dd2 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
# Maintainer: Juraj Fiala <doctorjellyface AT riseup DOT net>
_srcname=cc-icons
pkgname=otf-cc-icons
pkgver=1.2.1
pkgrel=1
pkgdesc='Suite of pictographic Creative Commons icons'
arch=('any')
url="https://$_srcname.github.io/"
license=('MIT')
depends=('fontconfig' 'xorg-font-utils')
source=("https://github.com/$_srcname/$_srcname/archive/$pkgver.tar.gz")
md5sums=('8b4144d8d13dd6cb9b79518930e80705')
package() {
cd "$_srcname-$pkgver/fonts"
install -dm 755 "${pkgdir}/usr/share/fonts/OTF"
install -m 644 *.otf "${pkgdir}/usr/share/fonts/OTF/"
}
|