# HG changeset patch # User alpar # Date 1109155997 0 # Node ID f426c84a4e00e8c22ef5cb6d58c6ed15711b3a81 # Parent fb0159aa582d2bbd564f377672bc072077100bbe Experimental autopackage specfile. diff -r fb0159aa582d -r f426c84a4e00 autopackage/default.apspec.in --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/autopackage/default.apspec.in Wed Feb 23 10:53:17 2005 +0000 @@ -0,0 +1,46 @@ +# -*-shell-script-*- + +[Meta] +RootName: @lemon.cs.elte.hu/lemon:$SOFTWAREVERSION +DisplayName: Lemon Library +ShortName: lemon +Maintainer: The LEMON Developers - http://lemon.cs.elte.hu/ +Packager: Alpar Juttner +Summary: LEMON library +SoftwareVersion: @VERSION@ +AutopackageTarget: 0.7 + +# Only uncomment InterfaceVersion if your package exposes interfaces to other software, +# for instance if it includes DSOs or python/perl modules. See the developer guide for more info, +# or ask on autopackage-dev if you don't understand interface versioning in autopackage. +# +# InterfaceVersion: 0.0 + +PackageVersion: 1 + +[Description] +LEMON stands for Library of Efficient Models and Optimization in Networks. +It is a C++ template library aimed at combinatorial optimization tasks, +primaliry those involved in working with graphs. + +[BuildPrepare] +prepareBuild + +[BuildUnprepare] +unprepareBuild + +[Imports] +echo '*' | import + +[Prepare] +# Dependency checking +#require @whatever.you/need 1.0 + +[Install] +# Put your installation script here +#installExe bin/* +copyFiles * $PREFIX + +[Uninstall] +# Usually just the following line is enough to uninstall everything +uninstallFromLog diff -r fb0159aa582d -r f426c84a4e00 configure.ac --- a/configure.ac Tue Feb 22 11:10:46 2005 +0000 +++ b/configure.ac Wed Feb 23 10:53:17 2005 +0000 @@ -27,5 +27,5 @@ AC_HEADER_STDC AC_CHECK_FUNCS(gettimeofday times ctime_r) -AC_CONFIG_FILES([Makefile doc/Makefile src/Makefile src/lemon/Makefile src/test/Makefile src/benchmark/Makefile src/demo/Makefile]) +AC_CONFIG_FILES([Makefile doc/Makefile src/Makefile src/lemon/Makefile src/test/Makefile src/benchmark/Makefile src/demo/Makefile autopackage/default.apspec]) AC_OUTPUT