Spracherkennung für: .g vermutete Sprache: Unknown {[0] [0] [0]} [Methode: Schwerpunktbildung, einfache Gewichte, sechs Dimensionen]
#
# gapbind_demo: Minimal demo of how to use gapbind14
#
# This file contains package meta data. For additional information on
# the meaning and correct usage of these fields, please consult the
# manual of the "Example" package as well as the comments in its
# PackageInfo.g file.
#
SetPackageInfo( rec(
PackageName := "gapbind_demo",
Subtitle := "Minimal demo of how to use gapbind14",
Version := "0.1",
Date := "15/07/2022", # dd/mm/yyyy format
License := "GPL-2.0-or-later",
Persons := [
rec(
FirstNames := "James D.",
LastName := "Mitchell",
WWWHome := "
https://jdbm.me",
Email := "jdm3@st-andrews.ac.uk",
IsAuthor := true,
IsMaintainer := true,
PostalAddress := "KY169 SS",
Place := "St Andrews",
Institution := "University of St Andrews",
),
],
#SourceRepository := rec( Type := "TODO", URL := "URL" ),
#IssueTrackerURL := "TODO",
PackageWWWHome := "na/",
PackageInfoURL := Concatenation( ~.PackageWWWHome, "PackageInfo.g" ),
README_URL := Concatenation( ~.PackageWWWHome, "README.md" ),
ArchiveURL := Concatenation( ~.PackageWWWHome,
"/", ~.PackageName, "-", ~.Version ),
ArchiveFormats := ".tar.gz",
## Status information. Currently the following cases are recognized:
## "accepted" for successfully refereed packages
## "submitted" for packages submitted for the refereeing
## "deposited" for packages for which the GAP developers agreed
## to distribute them with the core GAP system
## "dev" for development versions of packages
## "other" for all other packages
##
Status := "dev",
AbstractHTML := "",
PackageDoc := rec(
BookName := "gapbind_demo",
ArchiveURLSubset := ["doc"],
HTMLStart := "doc/chap0.html",
PDFFile := "doc/manual.pdf",
SixFile := "doc/manual.six",
LongTitle := "Minimal demo of how to use gapbind14",
),
Dependencies := rec(
GAP := ">= 4.11",
NeededOtherPackages := [ ],
SuggestedOtherPackages := [ ],
ExternalConditions := [ ],
),
AvailabilityTest := function()
local dir, lib;
dir := DirectoriesPackagePrograms("gapbind_demo");
lib := Filename(dir, "gapbind_demo.so");
if lib = fail then
LogPackageLoadingMessage(PACKAGE_WARNING,
"failed to load kernel module of package gapbind_demo");
return fail;
fi;
return true;
end,
TestFile := "tst/testall.g",
#Keywords := [ "TODO" ],
));