mirror of
https://github.com/archlinuxarm/PKGBUILDs.git
synced 2024-11-08 22:45:43 +00:00
33 lines
1.5 KiB
Bash
33 lines
1.5 KiB
Bash
# $Id: PKGBUILD 25969 2009-02-02 00:30:38Z thayer $
|
|
# Contributor: dale <dale@archlinux.org>
|
|
# Maintainer: Thayer Williams <thayer@archlinux.org>
|
|
|
|
pkgname=ttf-ms-fonts
|
|
pkgver=2.0
|
|
pkgrel=2
|
|
pkgdesc="Core TTF Fonts from Microsoft"
|
|
arch=(arm)
|
|
url="http://corefonts.sourceforge.net/"
|
|
_sfpath="http://downloads.sourceforge.net/corefonts"
|
|
license=('custom:microsoft')
|
|
depends=('cabextract' 'xorg-fonts-encodings' 'xorg-font-utils' 'fontconfig')
|
|
install=ttf-ms-fonts.install
|
|
source=($_sfpath/andale32.exe $_sfpath/arial32.exe $_sfpath/arialb32.exe
|
|
$_sfpath/comic32.exe $_sfpath/courie32.exe $_sfpath/georgi32.exe
|
|
$_sfpath/impact32.exe $_sfpath/times32.exe $_sfpath/trebuc32.exe
|
|
$_sfpath/verdan32.exe $_sfpath/webdin32.exe LICENSE)
|
|
md5sums=('cbdc2fdd7d2ed0832795e86a8b9ee19a' '9637df0e91703179f0723ec095a36cb5'
|
|
'c9089ae0c3b3d0d8c4b0a95979bb9ff0' '2b30de40bb5e803a0452c7715fc835d1'
|
|
'4e412c772294403ab62fb2d247d85c60' '4d90016026e2da447593b41a8d8fa8bd'
|
|
'7907c7dd6684e9bade91cff82683d9d7' 'f1cea3beb912a8a244e283738467671d'
|
|
'0d7ea16cac6261f8513a061fbfcdb2b5' '12d2a75f8156e10607be1eaa8e8ef120'
|
|
'230a1d13a365b22815f502eb24d9149b' '7a760fc266e256421078597e47f1af68')
|
|
|
|
build() {
|
|
mkdir -p $pkgdir/usr/share/licenses/$pkgname
|
|
cp $srcdir/LICENSE $pkgdir/usr/share/licenses/$pkgname
|
|
|
|
mkdir -p $pkgdir/tmp/$pkgname || return 1
|
|
chmod 1777 $pkgdir/tmp || return 1
|
|
install -m644 $srcdir/*.exe $pkgdir/tmp/$pkgname || return 1
|
|
}
|