Skip to content

Instantly share code, notes, and snippets.

Created October 8, 2012 09:35
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save anonymous/3851647 to your computer and use it in GitHub Desktop.
Save anonymous/3851647 to your computer and use it in GitHub Desktop.
Arch Linux PKGBUILD for Adobe Source Code Pro TTF-fonts, version 1.010
# Maintainer: Jonathan Arnold <jdarnold@buddydog.or
# Contributor: Jonathan Ryan <jryan@curious-computing.com>
# Contributor: Jakub Schmidtke <sjakub@gmail.com>
pkgname=ttf-source-code-pro
pkgver=1.010
pkgrel=1
pkgdesc="Adobe's fonts designed for source code"
arch=('any')
license=('custom:OFL')
url='https://github.com/adobe/Source-Code-Pro'
depends=('fontconfig' 'xorg-fonts-encodings' 'xorg-font-utils' 'xorg-mkfontdir' 'xorg-mkfontscale')
install=ttf-source-code-pro.install
source=("https://github.com/downloads/adobe/Source-Code-Pro/SourceCodePro_FontsOnly-${pkgver}.zip")
md5sums=('b13521e8ff303f6940509f3dde96aec3')
package() {
cd "${srcdir}/SourceCodePro_FontsOnly-${pkgver}"
install -d "${pkgdir}/usr/share/fonts/TTF"
install -m644 TTF/*.ttf "${pkgdir}/usr/share/fonts/TTF/"
install -D -m644 LICENSE.txt "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment