Tom Willemse
87aad63088
The original PKGBUILD from the AUR doesn't actually build the latest git revision.
23 lines
743 B
Bash
23 lines
743 B
Bash
# Maintainer: Parantapa Bhattacharya <pb at parantapa dot net>
|
|
pkgname=ttf-cosmic-sans-neue-git
|
|
pkgver=20131128
|
|
pkgrel=1
|
|
pkgdesc="A font family with a great monospaced variant for programmers."
|
|
arch=('any')
|
|
url="https://github.com/belluzj/cosmic-sans-neue"
|
|
license=('SIL OPEN FONT LICENSE Version 1.1')
|
|
depends=('fontconfig' 'xorg-font-utils')
|
|
makedepends=('git')
|
|
install=$pkgname.install
|
|
source=(git+https://github.com/belluzj/cosmic-sans-neue.git)
|
|
md5sums=('SKIP')
|
|
|
|
pkgver() {
|
|
cd "$srcdir/cosmic-sans-neue"
|
|
git log -1 --pretty=format:"%cd" --date=short | sed s/-//g
|
|
}
|
|
|
|
package() {
|
|
install -d "${pkgdir}/usr/share/fonts/TTF"
|
|
cp -dpr --no-preserve=ownership "${srcdir}/cosmic-sans-neue/"*.ttf "${pkgdir}/usr/share/fonts/TTF"
|
|
}
|