[Lemon-commits] [lemon_svn] alpar: r1577 - in hugo/trunk: . autopackage
Lemon SVN
svn at lemon.cs.elte.hu
Mon Nov 6 20:46:20 CET 2006
Author: alpar
Date: Wed Feb 23 11:53:17 2005
New Revision: 1577
Added:
hugo/trunk/autopackage/
hugo/trunk/autopackage/default.apspec.in
Modified:
hugo/trunk/configure.ac
Log:
Experimental autopackage specfile.
Added: hugo/trunk/autopackage/default.apspec.in
==============================================================================
--- (empty file)
+++ hugo/trunk/autopackage/default.apspec.in Wed Feb 23 11:53:17 2005
@@ -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 <alpar at cs.elte.hu>
+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
Modified: hugo/trunk/configure.ac
==============================================================================
--- hugo/trunk/configure.ac (original)
+++ hugo/trunk/configure.ac Wed Feb 23 11:53:17 2005
@@ -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
More information about the Lemon-commits
mailing list