diff options
author | chatty | 2002-03-08 15:04:20 +0000 |
---|---|---|
committer | chatty | 2002-03-08 15:04:20 +0000 |
commit | dc43b5dfa52acfaa8bb7782066c13949a252280e (patch) | |
tree | cf9870e3b122d78de69ce3aef2dcee0c102f5f00 | |
parent | 957200f3dacf15d49d1b72e7f2d3828bc7b391d4 (diff) | |
download | ivymon-dc43b5dfa52acfaa8bb7782066c13949a252280e.zip ivymon-dc43b5dfa52acfaa8bb7782066c13949a252280e.tar.gz ivymon-dc43b5dfa52acfaa8bb7782066c13949a252280e.tar.bz2 ivymon-dc43b5dfa52acfaa8bb7782066c13949a252280e.tar.xz |
Added gear for rpm packages
-rw-r--r-- | redhat/changelog | 14 | ||||
-rw-r--r-- | redhat/rules | 11 | ||||
-rw-r--r-- | src/Makefile | 21 |
3 files changed, 46 insertions, 0 deletions
diff --git a/redhat/changelog b/redhat/changelog new file mode 100644 index 0000000..70c7c1f --- /dev/null +++ b/redhat/changelog @@ -0,0 +1,14 @@ +$Version = "0.9.4"; +$Release = 2; + +$ChangeLog = ' + + * Fri Mar 8 2002 Stéphane Chatty <chatty@cena.fr> +- Generation of version 0.9.4-1 +- First rpm package + + * Fri Mar 8 2002 Stéphane Chatty <chatty@cena.fr> +- Generation of version 0.9.4-2 +- First rpm package + +'; diff --git a/redhat/rules b/redhat/rules new file mode 100644 index 0000000..95105ac --- /dev/null +++ b/redhat/rules @@ -0,0 +1,11 @@ +$Summary = "Ivymon, a graphical application for monitoring Ivy"; +$Name = "ivymon"; +$Copyright = "GPL"; +$Distribution = "Ivy"; +$Group = "System Environment/Libraries"; +$Url = "http://www.tls.cena.fr/products/ivy"; +$Requires = "perl-Net-Ivy >= 4.5, perl-Tk"; +$BuildArchitectures = "noarch"; +$Description = "Ivymon, a graphical application for monitoring Ivy buses."; + + diff --git a/src/Makefile b/src/Makefile new file mode 100644 index 0000000..98c01dc --- /dev/null +++ b/src/Makefile @@ -0,0 +1,21 @@ +# +# Ivymon +# +# Copyright (C) 2002 +# Centre d'Études de la Navigation Aérienne +# +# Makefile +# +# Authors: Stéphane Chatty <chatty@cena.fr> +# +# $Id$ +# +# + + + +all: + +install: + test -d $(PREFIX)/usr/bin || mkdirhier $(PREFIX)/usr/bin + install -m755 ivymon $(PREFIX)/usr/bin |