mirror of
https://gitdl.cn/https://github.com/chakralinux/core.git
synced 2025-02-03 20:07:14 +08:00
22 lines
846 B
Bash
22 lines
846 B
Bash
# Maintainer: s8321414 <s8321414 at gmail.com>
|
|
# Arch Linux maintainers and contributors:
|
|
# Maintainer: Jan Alexander Steffens (heftig) <jan.steffens@gmail.com>
|
|
pkgname=otf-source-serif-pro
|
|
pkgver=1.017
|
|
pkgrel=2
|
|
pkgdesc="A set of serif OpenType fonts designed to complement Source Sans Pro"
|
|
arch=('any')
|
|
url="http://adobe-fonts.github.io/source-serif-pro/"
|
|
license=('custom')
|
|
depends=('fontconfig')
|
|
install=otf.install
|
|
source=(https://github.com/adobe-fonts/source-serif-pro/archive/${pkgver}R.tar.gz)
|
|
sha256sums=('2f4f75b53983a399472e6972829de4e9a4aac76ad70bd111688e50c97d240212')
|
|
|
|
package() {
|
|
cd source-serif-pro-${pkgver}R
|
|
install -d "$pkgdir/usr/share/fonts/adobe-source-serif-pro"
|
|
install -t "$pkgdir/usr/share/fonts/adobe-source-serif-pro" -m644 OTF/*.otf
|
|
install -Dm644 LICENSE.txt "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
|
|
}
|