blob: 19d4271967f0335e21d281cf822cd84e8fe9ddf0 (
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
|
# Maintainer: Yacob Zitouni <yacob.zitouni@gmail.com>
pkgname=ttf-menlo-powerline-git
pkgrel=2
pkgver=r6.07e91f6
pkgdesc="Menlo font patched to work with Powerline"
arch=('any')
url="https://github.com/abertsch/Menlo-for-Powerline"
license=('GPL')
depends=('fontconfig' 'xorg-mkfontscale' 'xorg-mkfontdir')
makedepends=('git')
install=ttf-menlo-powerline-git.install
source=('git+https://github.com/abertsch/Menlo-for-Powerline.git')
license=('unknown')
md5sums=('SKIP')
pkgver() {
cd "$srcdir/Menlo-for-Powerline"
printf "r%s.%s" "$(git rev-list --count HEAD)" "$(git rev-parse --short HEAD)"
}
package() {
cd "$srcdir/Menlo-for-Powerline"
install -d $pkgdir/usr/share/fonts/TTF/
install -m644 *.ttf $pkgdir/usr/share/fonts/TTF/
}
|