blob: 99d5343c5672b5b242c67101f27664e32ec2b1d0 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
|
#!/bin/bash
while [ $# -gt 0 ] ; do
case "$1" in
gpl)
echo "GPL-1";;
gpl2)
echo "GPL-2";;
gpl3)
echo "GPL-3";;
lppl1)
echo "LPPL-1.3";;
lppl)
echo "LPPL-1.3";;
lppl1.2)
echo "LPPL-1.2";;
lppl1.3)
echo "LPPL-1.3";;
gfl)
echo "LPPL-1.3";;
gfsl)
echo "LPPL-1.3";;
#unknown)
# echo "TeX-unknown";;
noinfo)
echo "TeX-noinfo";;
nosource)
echo "TeX-nosource";;
collection)
echo "GPL-2";;
other-free)
echo "TeX-other-free";;
#other)
# echo "TeX-other";;
other-nonfree)
echo "TeX-other-nonfree";;
lgpl)
echo "LGPL-2";;
lgpl2.1)
echo "LGPL-2.1";;
pd)
echo "public-domain";;
apache2)
echo "Apache-2.0";;
artistic2)
echo "Artistic-2";;
artistic)
echo "Artistic";;
bsd)
echo "BSD";;
bsd3)
echo "BSD";;
knuth)
echo "TeX";;
fdl)
echo "FDL-1.1";;
ofl)
echo "OFL";;
opl)
echo "OPL";;
mit)
echo "MIT";;
bsd2)
echo "BSD-2";;
#nosell)
# echo "nosell";;
#nocommercial)
# echo "nosell";;
*)
echo "The $1 license is not mapped yet!"
exit 1;;
esac
shift
done
|