summarylogtreecommitdiffstats
path: root/PKGBUILD
blob: 142c8e695d971038783a7dca2c2c306a8145b94c (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
# Maintainer: Devin Christensen <quixoten at gmail dot com>
pkgname=ttf-droid-sans-mono-dotted-powerline-git
pkgver=r78.97dc451
pkgrel=2
pkgdesc="Droid Sans Mono for Powerline (Dotted Zero)"
arch=('any')
url=('https://github.com/powerline/fonts')
license=('custom:Apache License, Version 2.0')
depends=(fontconfig xorg-font-utils )
makedepends=('git')
conflicts=(powerline-fonts powerline-fonts-git)
install=$pkgname.install
source=('git://github.com/powerline/fonts.git')
md5sums=('SKIP')

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

package() {
  cd $srcdir/fonts/DroidSansMonoDotted
  find . -iname '*.ttf' -execdir install -Dm644 {} $pkgdir/usr/share/fonts/TTF/{} \;
  install -Dm644 LICENSE.txt $pkgdir/usr/share/licenses/$pkgname/LICENSE
}