diff options
author | Folker Bernitt <fbernitt@thoughtworks.com> | 2014-09-10 11:36:16 +0200 |
---|---|---|
committer | Folker Bernitt <fbernitt@thoughtworks.com> | 2014-09-10 12:08:34 +0200 |
commit | dfd12bc6c6625ed1f2d811a8abbc491688d6bd54 (patch) | |
tree | 4eaf764b7fd64f584a6b988ce544ea77de253af4 /debian | |
parent | 336c61806095752d08da03657b460e8532ee7324 (diff) |
Build and add resources at the right locations.
- include package data into build
- build resources as part of debian dpkg-buildpackage
use: dpkg-buildpackage -rfakeroot -uc -us to build the package
Diffstat (limited to 'debian')
-rw-r--r-- | debian/control | 3 | ||||
-rwxr-xr-x | debian/rules | 9 |
2 files changed, 11 insertions, 1 deletions
diff --git a/debian/control b/debian/control index aa4fd051..f7addb1a 100644 --- a/debian/control +++ b/debian/control @@ -2,11 +2,12 @@ Source: pixelated-user-agent Maintainer: Thoughtworks <pixelated-team@thoughtworks.com> Section: python Priority: optional -Build-Depends: python-setuptools (>= 0.6b3), python-all (>= 2.6.6-3), debhelper (>= 7.4.3) +Build-Depends: python-setuptools (>= 0.6b3), python-all (>= 2.6.6-3), debhelper (>= 7.4.3), ruby-compass, nodejs Standards-Version: 3.9.1 Homepage: http://pixelated-project.org Vcs-Git: https://github.com/pixelated-project/pixelated-user-agent.git Vcs-Browser: https://github.com/pixelated-project/pixelated-user-agent +X-Python-Version: >= 2.7 Package: pixelated-user-agent Architecture: all diff --git a/debian/rules b/debian/rules index b6082fa2..80a8ab61 100755 --- a/debian/rules +++ b/debian/rules @@ -27,6 +27,15 @@ include /usr/share/dpkg/default.mk # dh_auto_configure -- \ # -DCMAKE_LIBRARY_PATH=$(DEB_HOST_MULTIARCH) +override_dh_auto_clean: + dh_auto_clean + dh_auto_clean --sourcedirectory=web-ui +override_dh_auto_build: + dh_auto_build + dh_auto_build --sourcedirectory=web-ui +override_dh_auto_install: + dh_auto_install + dh_auto_install --sourcedirectory=web-ui |