diff options
author | Steven Knight <knight@baldmt.com> | 2001-11-16 22:06:52 (GMT) |
---|---|---|
committer | Steven Knight <knight@baldmt.com> | 2001-11-16 22:06:52 (GMT) |
commit | 76166c77f852377b6139a9414cc355fe2661a0e7 (patch) | |
tree | fe77db2a491d0f8f0aa6c743c1e1f5b21a1914ed /debian/rules | |
parent | 9508d219188fcd2ad8eb2d24606d1b9c611e9ed2 (diff) | |
download | SCons-76166c77f852377b6139a9414cc355fe2661a0e7.zip SCons-76166c77f852377b6139a9414cc355fe2661a0e7.tar.gz SCons-76166c77f852377b6139a9414cc355fe2661a0e7.tar.bz2 |
Add the scons package.
Diffstat (limited to 'debian/rules')
-rw-r--r-- | debian/rules | 38 |
1 files changed, 26 insertions, 12 deletions
diff --git a/debian/rules b/debian/rules index 38f5a8b..4ff4659 100644 --- a/debian/rules +++ b/debian/rules @@ -34,26 +34,37 @@ endif clean: dh_testdir dh_testroot - rm -f build-stamp configure-stamp + rm -f build-stamp configure-stamp install-common-stamp rm -rf build find -name .construct -exec rm "{}" ";" dh_clean -install: DH_OPTIONS= -install: build +install-common: install-common-stamp +install-common-stamp: DH_OPTIONS= +install-common-stamp: dh_testdir dh_testroot dh_clean -k dh_installdirs - python build/engine/setup.py install \ ---install-purelib=`pwd`/debian/python-scons/usr/lib/python1.5/site-packages --no-compile + touch install-common-stamp - python build/script/setup.py install \ ---install-scripts=`pwd`/debian/scons/usr/bin --no-compile +install-scons: build install-common + python build/scons/setup.py install \ +--install-scripts=`pwd`/debian/scons/usr/bin \ +--install-purelib=`pwd`/debian/scons/usr/lib/scons-0.01 --no-compile + +install-python-scons: build install-common + python build/python-scons/setup.py install \ +--install-purelib=`pwd`/debian/python-scons/usr/lib/python1.5/site-packages --no-compile - python build/engine/setup.py install \ +install-python2-scons: build install-common + python build/python2-scons/setup.py install \ --install-purelib=`pwd`/debian/python2-scons/usr/lib/python2.0/site-packages --no-compile +install-scons-script: build install-common + python build/scons-script/setup.py install \ +--install-scripts=`pwd`/debian/scons/usr/bin --no-compile + # This single target is used to build all the packages, all at once, or # one at a time. So keep in mind: any options passed to commands here will @@ -82,17 +93,20 @@ binary-indep: build install binary-arch: build install # Any other binary targets build just one binary package at a time. -binary-scons: build install +binary-scons: build install-scons $(MAKE) ENVOKED_BY_CONSTRUCT=$(ENVOKED_BY_CONSTRUCT) -f debian/rules binary-common DH_OPTIONS=-pscons -binary-python-scons: build install +binary-python-scons: build install-python-scons $(MAKE) ENVOKED_BY_CONSTRUCT=$(ENVOKED_BY_CONSTRUCT) -f debian/rules binary-common DH_OPTIONS=-ppython-scons -binary-python2-scons: build install +binary-python2-scons: build install-python2-scons $(MAKE) ENVOKED_BY_CONSTRUCT=$(ENVOKED_BY_CONSTRUCT) -f debian/rules binary-common DH_OPTIONS=-ppython2-scons +binary-scons-script: build install-scons-script + $(MAKE) ENVOKED_BY_CONSTRUCT=$(ENVOKED_BY_CONSTRUCT) -f debian/rules binary-common DH_OPTIONS=-pscons-script + binary: binary-indep binary-arch -.PHONY: build clean binary-indep binary-arch binary install binary-scons binary-python-scons binary-python2-scons +.PHONY: build clean binary-indep binary-arch binary install binary-scons binary-python-scons binary-python2-scons binary-scons-script install-scons install-python-scons install-python2-scons install-scons-script |