autopackage/default.apspec.in
author deba
Thu, 19 May 2005 11:49:42 +0000
changeset 1429 4283998fb2be
child 2270 ac729a29120e
permissions -rw-r--r--
Able to read edge from undirected edgeset
Graph reader and graph writer can resolve items by id.

It makes possible:

GraphReader<Graph> reader(std::cin, graph);

reader.readNodeMap....

NewEdgeSetAdaptor<Graph> edgeset(graph);
UndirEdgeSetReader<Graph> unir_edgeset_reader(reader, edgeset, reader);

reader.run();

It reads the graph and an additional edgeset in to the edgeset.
     1 # -*-shell-script-*-
     2 
     3 [Meta]
     4 RootName: @lemon.cs.elte.hu/lemon:$SOFTWAREVERSION
     5 DisplayName: Lemon Library
     6 ShortName: lemon
     7 Maintainer: The LEMON Developers - http://lemon.cs.elte.hu/
     8 Packager: Alpar Juttner <alpar@cs.elte.hu>
     9 Summary: LEMON library
    10 SoftwareVersion: @VERSION@
    11 AutopackageTarget: 0.7
    12 
    13 # Only uncomment InterfaceVersion if your package exposes interfaces to other software,
    14 # for instance if it includes DSOs or python/perl modules. See the developer guide for more info,
    15 # or ask on autopackage-dev if you don't understand interface versioning in autopackage.
    16 #
    17 # InterfaceVersion: 0.0
    18 
    19 PackageVersion: 1
    20 
    21 [Description]
    22 LEMON stands for Library of Efficient Models and Optimization in Networks.
    23 It is a C++ template library aimed at combinatorial optimization tasks,
    24 primaliry those involved in working with graphs.
    25 
    26 [BuildPrepare]
    27 prepareBuild
    28 
    29 [BuildUnprepare]
    30 unprepareBuild
    31 
    32 [Imports]
    33 echo '*' | import
    34 
    35 [Prepare]
    36 # Dependency checking
    37 #require @whatever.you/need 1.0
    38 
    39 [Install]
    40 # Put your installation script here
    41 #installExe bin/*
    42 copyFiles * $PREFIX
    43 
    44 [Uninstall]
    45 # Usually just the following line is enough to uninstall everything
    46 uninstallFromLog