Permalink
Newer
100755
30 lines (19 sloc)
401 Bytes
1
#!/bin/env beesh
2
3
SRCURL[0]="http://downloads.sourceforge.net/gs-fonts/gnu-gs-fonts-other-6.0.tar.gz"
4
5
PGRP=( uncategorized )
6
7
8
BEE_CONFIGURE=none
9
10
B=${S}
11
12
mee_patch() {
13
bee_patch
14
}
15
16
mee_extract() {
17
mkdir -p ${S}
18
}
19
20
mee_build() {
21
return 0
22
}
23
24
mee_install() {
25
26
mkdir -p ${D}/usr/share/ghostscript
27
28
tar -xovf ${F}/gnu-gs-fonts-other-6.0.tar.gz \
29
-C ${D}/usr/share/ghostscript
30
}