Experimental autopackage specfile.
1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000
1.2 +++ b/autopackage/default.apspec.in Wed Feb 23 10:53:17 2005 +0000
1.3 @@ -0,0 +1,46 @@
1.4 +# -*-shell-script-*-
1.5 +
1.6 +[Meta]
1.7 +RootName: @lemon.cs.elte.hu/lemon:$SOFTWAREVERSION
1.8 +DisplayName: Lemon Library
1.9 +ShortName: lemon
1.10 +Maintainer: The LEMON Developers - http://lemon.cs.elte.hu/
1.11 +Packager: Alpar Juttner <alpar@cs.elte.hu>
1.12 +Summary: LEMON library
1.13 +SoftwareVersion: @VERSION@
1.14 +AutopackageTarget: 0.7
1.15 +
1.16 +# Only uncomment InterfaceVersion if your package exposes interfaces to other software,
1.17 +# for instance if it includes DSOs or python/perl modules. See the developer guide for more info,
1.18 +# or ask on autopackage-dev if you don't understand interface versioning in autopackage.
1.19 +#
1.20 +# InterfaceVersion: 0.0
1.21 +
1.22 +PackageVersion: 1
1.23 +
1.24 +[Description]
1.25 +LEMON stands for Library of Efficient Models and Optimization in Networks.
1.26 +It is a C++ template library aimed at combinatorial optimization tasks,
1.27 +primaliry those involved in working with graphs.
1.28 +
1.29 +[BuildPrepare]
1.30 +prepareBuild
1.31 +
1.32 +[BuildUnprepare]
1.33 +unprepareBuild
1.34 +
1.35 +[Imports]
1.36 +echo '*' | import
1.37 +
1.38 +[Prepare]
1.39 +# Dependency checking
1.40 +#require @whatever.you/need 1.0
1.41 +
1.42 +[Install]
1.43 +# Put your installation script here
1.44 +#installExe bin/*
1.45 +copyFiles * $PREFIX
1.46 +
1.47 +[Uninstall]
1.48 +# Usually just the following line is enough to uninstall everything
1.49 +uninstallFromLog
2.1 --- a/configure.ac Tue Feb 22 11:10:46 2005 +0000
2.2 +++ b/configure.ac Wed Feb 23 10:53:17 2005 +0000
2.3 @@ -27,5 +27,5 @@
2.4 AC_HEADER_STDC
2.5 AC_CHECK_FUNCS(gettimeofday times ctime_r)
2.6
2.7 -AC_CONFIG_FILES([Makefile doc/Makefile src/Makefile src/lemon/Makefile src/test/Makefile src/benchmark/Makefile src/demo/Makefile])
2.8 +AC_CONFIG_FILES([Makefile doc/Makefile src/Makefile src/lemon/Makefile src/test/Makefile src/benchmark/Makefile src/demo/Makefile autopackage/default.apspec])
2.9 AC_OUTPUT