mirror of
https://gitdl.cn/https://github.com/chakralinux/core.git
synced 2025-02-11 22:54:38 +08:00
28 lines
795 B
Bash
28 lines
795 B
Bash
# Platform packages for Chakra
|
|
|
|
pkgname=ttf-raleway
|
|
pkgver=3.0
|
|
pkgrel=1
|
|
_update=100
|
|
pkgdesc="A sans-serif typeface"
|
|
arch=('any')
|
|
url="http://theleagueofmoveabletype.com/raleway/"
|
|
license=('custom:OFL')
|
|
depends=('fontconfig' 'xorg-font-utils')
|
|
install=ttf.install
|
|
source=("http://www.impallari.com/media/uploads/prosources/update-${_update}-source.zip")
|
|
md5sums=('fd753c68236f5c712a89bb798a90c4a1')
|
|
|
|
package() {
|
|
cd ${srcdir}/r*
|
|
|
|
install -dm755 "${pkgdir}/usr/share/fonts/TTF/"
|
|
install -Dpm644 *.ttf "${pkgdir}/usr/share/fonts/TTF/"
|
|
|
|
install -dm755 "${pkgdir}/usr/share/licenses/${pkgname}/"
|
|
install -Dpm644 OFL.txt "${pkgdir}/usr/share/licenses/${pkgname}/"
|
|
|
|
install -dm755 "${pkgdir}/usr/share/doc/${pkgname}/"
|
|
install -Dpm644 FONTLOG.txt "${pkgdir}/usr/share/doc/${pkgname}/"
|
|
}
|