[symmetrica] 02/02: Changed maintainer to Science Team and removed quilt build depends.
Dominique Ingoglia
godel108-guest at alioth.debian.org
Sat Oct 19 03:58:02 UTC 2013
This is an automated email from the git hooks/post-receive script.
godel108-guest pushed a commit to branch master
in repository symmetrica.
commit 1371851b4cebdc8e15d049a2ef2de507d8b29213
Author: Dominique Ingoglia <Dominique.Ingoglia at gmail.com>
Date: Thu Oct 17 23:58:54 2013 -0600
Changed maintainer to Science Team and removed quilt build depends.
---
debian/control | 5 +++--
makefile | 41 ++++++++++++++++++++++++++++++++++++++---
2 files changed, 41 insertions(+), 5 deletions(-)
diff --git a/debian/control b/debian/control
index f20b128..579686c 100644
--- a/debian/control
+++ b/debian/control
@@ -1,8 +1,9 @@
Source: symmetrica
Section: math
Priority: optional
-Maintainer: Tim Abbott <tabbott at mit.edu>
-Build-Depends: debhelper (>= 9), quilt, patchutils (>= 0.2.25),
+Maintainer: Debian Scienc Maintainers <debian-science-maintainers at lists.alioth.debian.org>
+Uploaders: Dominique Ingoglia <Dominique.Ingoglia at gmail.com>
+Build-Depends: debhelper (>= 9)
Homepage: http://www.neu.uni-bayreuth.de/de/Uni_Bayreuth/Fakultaeten/1_Mathematik_Physik_und_Informatik/Fachgruppe_Informatik/prof_diskrete_algorithmen/en/research/SYMMETRICA/index.html
Standards-Version: 3.9.4
diff --git a/makefile b/makefile
index 933bbb9..ffd208f 100644
--- a/makefile
+++ b/makefile
@@ -1,4 +1,39 @@
+OBJS=bar.o bi.o boe.o bruch.o classical.o de.o di.o ff.o galois.o ga.o gra.o hash.o hiccup.o io.o ko.o list.o lo.o ma.o mee.o mem.o mes.o mhe.o mhh.o mhm.o mhp.o mhs.o mmm.o mms.o mod_dg_sbd.o mo.o mpp.o mps.o mse.o msh.o msm.o mss.o muir.o na.o nb.o nc.o nu.o part.o pee.o peh.o pem.o perm.o pes.o phe.o phh.o phm.o phs.o plet.o pme.o pmh.o poly.o ppe.o pph.o ppm.o ppp.o pps.o pr.o pse.o psh.o psm.o pss.o rest.o rh.o sab.o sb.o sc.o sr.o ta.o teh.o tem.o tep.o tes.o the.o thm.o thp.o ths. [...]
+LIBS=-lm
+CC=gcc
+CFLAGS=-O1
+VERSION=2.0
+DIRNAME=symmetrica-$(VERSION)
+TARGETS=libsymmetrica.a libsymmetrica.so
+PREFIX=/usr
+
+all: $(TARGETS)
+
.c.o:
- cc -c -O2 -DFAST -DALLTRUE $<
-test: test.c bar.o bi.o boe.o bruch.o classical.o de.o di.o ff.o galois.o ga.o gra.o hash.o hiccup.o io.o ko.o list.o lo.o ma.o mee.o mem.o mes.o mhe.o mhh.o mhm.o mhp.o mhs.o mmm.o mms.o mod_dg_sbd.o mo.o mpp.o mps.o mse.o msh.o msm.o mss.o muir.o na.o nb.o nc.o nu.o part.o pee.o peh.o pem.o perm.o pes.o phe.o phh.o phm.o phs.o plet.o pme.o pmh.o poly.o ppe.o pph.o ppm.o ppp.o pps.o pr.o pse.o psh.o psm.o pss.o rest.o rh.o sab.o sb.o sc.o sr.o ta.o teh.o tem.o tep.o tes.o the.o thm.o th [...]
- gcc -DALLTRUE -DFAST test.c bar.o bi.o boe.o bruch.o classical.o de.o di.o ff.o galois.o ga.o gra.o hash.o hiccup.o io.o ko.o list.o lo.o ma.o mee.o mem.o mes.o mhe.o mhh.o mhm.o mhp.o mhs.o mmm.o mms.o mod_dg_sbd.o mo.o mpp.o mps.o mse.o msh.o msm.o mss.o muir.o na.o nb.o nc.o nu.o part.o pee.o peh.o pem.o perm.o pes.o phe.o phh.o phm.o phs.o plet.o pme.o pmh.o poly.o ppe.o pph.o ppm.o ppp.o pps.o pr.o pse.o psh.o psm.o pss.o rest.o rh.o sab.o sb.o sc.o sr.o ta.o teh.o tem.o tep.o tes. [...]
+ $(CC) -c $(CFLAGS) $(FPICFLAG) -DFAST -DALLTRUE $<
+
+test: test.c $(OBJS)
+ $(CC) -DALLTRUE -DFAST test.c $(OBJS) $(LIBS) -o test
+
+libsymmetrica.a: $(OBJS)
+ ar crs $@ $(OBJS)
+ ranlib $@
+
+shlib: $(OBJS)
+shlib: FPICFLAG=-fPIC
+
+libsymmetrica.so:
+ -rm -f $(OBJS)
+ make shlib
+ $(CC) $(CFLAGS) -fPIC -shared -Wl,-soname,lib$(DIRNAME).so $(LIBS) -o lib$(DIRNAME).so $(OBJS)
+ ln -s lib$(DIRNAME).so $@
+
+install: all
+ mkdir -p $(DESTDIR)$(PREFIX)/lib
+ install -p lib$(DIRNAME).so libsymmetrica.a $(DESTDIR)$(PREFIX)/lib
+ ln -s lib$(DIRNAME).so $(DESTDIR)$(PREFIX)/lib/libsymmetrica.so
+ mkdir -p $(DESTDIR)$(PREFIX)/include/symmetrica
+ install -p def.h macro.h $(DESTDIR)$(PREFIX)/include/symmetrica/
+
+clean:
+ rm -f $(OBJS) $(TARGETS) test libsymmetrica-*.so
--
Alioth's /usr/local/bin/git-commit-notice on /srv/git.debian.org/git/debian-science/packages/symmetrica.git
More information about the debian-science-commits
mailing list