-
Notifications
You must be signed in to change notification settings - Fork 2
/
PackageInfo.g
68 lines (62 loc) · 1.91 KB
/
PackageInfo.g
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
SetPackageInfo( rec(
PackageName := "complex",
Subtitle := "I wear a chain complex now. Chain complexes are cool",
Version := "0.1-dev",
Date := "24/12/2013",
## Optional: if the package manual uses GAPDoc, you may duplicate the
## version and the release date as shown below to read them while building
## the manual using GAPDoc facilities to distibute documents across files.
## <#GAPDoc Label="PKGVERSIONDATA">
## <!ENTITY VERSION "0.1-dev">
## <!ENTITY RELEASEDATE "24 December 2013">
## <#/GAPDoc>
PackageWWWHome :="https://bitbucket.org/karnesen/complex",
#ArchiveURL := Concatenation( ~.PackageWWWHome, "example-", ~.Version ),
ArchiveFormats := ".tar.gz",
Persons := [
rec(
LastName := "Arnesen",
FirstNames := "Kristin Krogh",
IsAuthor := true,
IsMaintainer := true,
Email := "[email protected]",
WWWHome := "http://www.math.ntnu.no/~kristink",
PostalAddress := "Trondheim",
Place := "Trondheim",
Institution := "NTNU"
),
rec(
LastName := "Skartsæterhagen",
FirstNames := "Øystein",
IsAuthor := true,
IsMaintainer := true,
Email := "[email protected]",
WWWHome := "http://www.math.ntnu.no/~oysteini",
PostalAddress := "Trondheim",
Place := "Trondheim",
Institution := "NTNU"
),
],
Status := "other",
README_URL :=
Concatenation( ~.PackageWWWHome, "README" ),
PackageInfoURL :=
Concatenation( ~.PackageWWWHome, "PackageInfo.g" ),
AbstractHTML :=
"<b>boo</b>",
PackageDoc := rec(
BookName := "complex",
ArchiveURLSubset := ["doc"],
HTMLStart := "doc/chap0.html",
PDFFile := "doc/manual.pdf",
SixFile := "doc/manual.six",
LongTitle := "The ultimate package",
),
Dependencies := rec(
GAP := "4.4",
NeededOtherPackages := [["GAPDoc", "1.3"]],
SuggestedOtherPackages := [],
ExternalConditions := []
),
AvailabilityTest := ReturnTrue,
));