Ticket #10888: vlgothic-20140530.recipe

File vlgothic-20140530.recipe, 1.2 KB (added by mt, 10 years ago)
Line 
1SUMMARY="VLGothic Font Family"
2DESCRIPTION="
3VLGothic Font Family is Japanese TrueType modern gothic fonts \
4based on the M+ fonts and the Sazanami fonts.
5"
6HOMEPAGE="http://vlgothic.dicey.org"
7SRC_URI="http://sourceforge.jp/projects/vlgothic/downloads/61261/VLGothic-20140530.zip"
8CHECKSUM_SHA256="17b8bf25d18c1452f84e22b90ec71f5fb803b9ab035a4e81d44f2edde9eed935"
9LICENSE="
10 Sazanami Gothic font license
11 M+ FONTS PROJECT's license
12"
13COPYRIGHT="
14 1990-2003 Wada Laboratory, the University of Tokyo.
15 2003-2004 Electronic Font Open Laboratory (/efont/).
16 2003-2012 M+ FONTS PROJECT
17 2006-2012 Daisuke SUZUKI
18 2006-2012 Project Vine
19"
20REVISION="1"
21
22ARCHITECTURES="any"
23DISABLE_SOURCE_PACKAGE=yes
24
25PROVIDES="vlgothic_font_family = $portVersion"
26REQUIRES=""
27BUILD_REQUIRES=""
28BUILD_PREREQUIRES="coreutils"
29
30SOURCE_DIR="vlgothic-font-family"
31
32BUILD()
33{
34 true
35}
36
37INSTALL()
38{
39 FONTDIR=$fontsDir/vlgothic
40 mkdir -p ${FONTDIR}
41 cp VL-Gothic-Regular.ttf ${FONTDIR}
42 cp VL-PGothic-Regular.ttf ${FONTDIR}
43 cp Changelog ${FONTDIR}
44 cp LICENSE ${FONTDIR}
45 cp LICENSE.en ${FONTDIR}
46 cp README ${FONTDIR}
47 cp LICENSE_E.mplus ${FONTDIR}
48 cp LICENSE_J.mplus ${FONTDIR}
49 cp README_E.mplus ${FONTDIR}
50 cp README_J.mplus ${FONTDIR}
51 cp README.sazanami ${FONTDIR}
52}
53