Last active
August 29, 2015 13:55
-
-
Save nna774/8781461 to your computer and use it in GitHub Desktop.
menma font pkgbuild
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Contributor: NoNameA 774 <nonamea774@gmail.com> | |
pkgname=ttf-menma | |
pkgver=1 | |
pkgrel=1 | |
pkgdesc="Japanese TrueType fonts created by menma" | |
arch=('any') | |
url="http://www.anohana.jp/tv/special/font.html" | |
license=('custom') | |
depends=('fontconfig' 'xorg-font-utils') | |
install=ttf.install | |
source=("http://www.anohana.jp/tv/special/img/menma_font.zip") | |
md5sums=('357a78c18cc17dd11bbb0c1f3cab6585' ) | |
makedepends=('unzip') | |
prepare() { | |
unzip menma_font.zip | |
} | |
package() { | |
install -d ${pkgdir}/usr/share/fonts/TTF | |
install -m644 "$srcdir/"menma_font/menma.ttf ${pkgdir}/usr/share/fonts/TTF | |
install -D -m644 "$srcdir/"menma_font/readme.txt ${pkgdir}/usr/share/licenses/${pkgname}/COPYING.txt | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
post_install() { | |
echo -n "Updating font cache... " | |
fc-cache -fs >/dev/null | |
mkfontscale /usr/share/fonts/TTF /usr/share/fonts/Type1 | |
mkfontdir /usr/share/fonts/TTF /usr/share/fonts/Type1 | |
echo "done" | |
} | |
post_upgrade() { | |
post_install | |
} | |
post_remove() { | |
post_install | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment