summarylogtreecommitdiffstats
path: root/PKGBUILD
blob: 387823ad338189fd95e5e23cfdf93fa6f29f071b (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
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
# $Id: PKGBUILD 249884 2015-10-30 21:49:02Z arojas $
# Maintainer: Antonio Rojas <arojas@archlinux.org>
# Contributor: Claire Charron <claire@undeterminant.net>

_pkgname=noto-fonts-emoji
pkgname=$_pkgname-git
pkgver=r81.9417128
pkgrel=1
pkgdesc="Google Noto emoji fonts"
arch=(any)
url="https://www.google.com/get/noto/"
license=(Apache)
provides=($_pkgname)
conflicts=($_pkgname)
depends=(fontconfig)
makedepends=(cairo git optipng python2-fonttools nototools zopflipng-git)
install=$_pkgname.install
source=("$_pkgname::git+https://github.com/googlei18n/noto-emoji.git"
        "$_pkgname.patch")
sha512sums=('SKIP'
            '72f3c82ba3a1e69c158c3238c4c817df3e77302071ec1094fb284863ee72fb00117d89531ba75412501507984df4561ad013a09ac5742728c240bf073d80f4d0')

pkgver() {
  cd "$_pkgname"
  printf "r%s.%s" "$(git rev-list --count HEAD)" "$(git rev-parse --short HEAD)"
}

prepare() {
  cd "$_pkgname"
  patch -i ../$_pkgname.patch
  find -name '*.py' | xargs sed -e 's|/usr/bin/env python|/usr/bin/env python2|' -i
  sed -e 's|python|python2|g' -e 's|ttx "$<"|ttx2 "$<"|g' -i Makefile
}

build() {
  cd "$_pkgname"
  make
}

package() {
  cd "$_pkgname"
  mkdir -p "$pkgdir"/usr/share/fonts/noto
  install -m644 NotoColorEmoji.ttf fonts/NotoEmoji-Regular.ttf "$pkgdir"/usr/share/fonts/noto
}