deb pkg ctd
authorThierry Parmentelat <thierry.parmentelat@inria.fr>
Fri, 3 May 2013 16:14:57 +0000 (18:14 +0200)
committerThierry Parmentelat <thierry.parmentelat@inria.fr>
Fri, 3 May 2013 16:14:57 +0000 (18:14 +0200)
Makefile
debian/myslice.install
debian/unfold.install
setup.py

index 781a85d..3553855 100644 (file)
--- a/Makefile
+++ b/Makefile
@@ -18,9 +18,9 @@ build: static templates
 
 install: 
        python setup.py install \
-           --install-purelib=$(DESTDIR)/$(datadir)/myslice \
-           --install-scripts=$(DESTDIR)/$(datadir)/myslice \
-           --install-data=$(DESTDIR)/$(datadir)/myslice
+           --install-purelib=$(DESTDIR)/$(datadir)/unfold \
+           --install-scripts=$(DESTDIR)/$(datadir)/unfold \
+           --install-data=$(DESTDIR)/$(datadir)/unfold
 
 ####################
 # general stuff
@@ -164,6 +164,7 @@ RSYNC_COND_DRY_RUN  := $(if $(findstring n,$(MAKEFLAGS)),--dry-run,)
 # putting it together
 RSYNC                  := rsync -a -v $(RSYNC_COND_DRY_RUN) $(RSYNC_EXCLUDES)
 
+##### convenience for development only, push code on a specific test box
 # xxx until we come up with a packaging this is going to be a wild guess
 # on debian04 I have stuff in /usr/share/myslice and a symlink in /root/myslice
 #INSTALLED=/usr/share/myslice
index 93b0ce5..03975ed 100644 (file)
@@ -1 +1 @@
-usr/lib*/python*/site-packages/unfold/plugins
+usr/share/unfold/plugins
index 13a05e4..02fa3c5 100644 (file)
@@ -1,2 +1,9 @@
-usr/lib*/python*/site-packages/unfold/unfold
-usr/lib*/python*/site-packages/unfold/engine
+usr/share/unfold/all-static
+usr/share/unfold/all-templates
+usr/share/unfold/apache
+usr/share/unfold/auth
+usr/share/unfold/insert_above
+usr/share/unfold/manifold
+usr/share/unfold/plugins
+usr/share/unfold/unfold
+usr/share/unfold/views
index d6b487e..8783260 100644 (file)
--- a/setup.py
+++ b/setup.py
@@ -9,7 +9,7 @@ import os.path
 from glob import glob
 from distutils.core import setup
 
-# we don't have a final list os let's keep it simple for now
+# we don't have a final list so let's keep it simple for now
 packages= [ os.path.dirname(init) for init in (glob("*/__init__.py")+glob("*/*/__init__.py")) ]
 
 setup(packages = packages,