diff options
author | jstebbins <[email protected]> | 2009-09-21 17:44:51 +0000 |
---|---|---|
committer | jstebbins <[email protected]> | 2009-09-21 17:44:51 +0000 |
commit | 2eb1ef0060a0e14602bb6c508a71c62e24adde20 (patch) | |
tree | 34c9111fb5cf264bfa89980e223d7ea0581fa6be /pkg/linux | |
parent | d7c7f8f118a688a3097c7a47b8a5aefcb4ca2825 (diff) |
LinGui: make debian packaging rules work on ubuntu 8.04
needed to specify compatibility with debhelper scripts version 6
and add explicit source path to dh_install
git-svn-id: svn://svn.handbrake.fr/HandBrake/trunk@2833 b64f7644-9d1e-0410-96f1-a4d463321fa5
Diffstat (limited to 'pkg/linux')
-rw-r--r-- | pkg/linux/debian/compat | 2 | ||||
-rw-r--r-- | pkg/linux/debian/control | 2 | ||||
-rwxr-xr-x | pkg/linux/debian/rules | 4 |
3 files changed, 4 insertions, 4 deletions
diff --git a/pkg/linux/debian/compat b/pkg/linux/debian/compat index 7f8f011eb..1e8b31496 100644 --- a/pkg/linux/debian/compat +++ b/pkg/linux/debian/compat @@ -1 +1 @@ -7 +6 diff --git a/pkg/linux/debian/control b/pkg/linux/debian/control index 95feec481..e6b955284 100644 --- a/pkg/linux/debian/control +++ b/pkg/linux/debian/control @@ -2,7 +2,7 @@ Source: handbrake Section: graphics Priority: optional Maintainer: John Stebbins <[email protected]> -Build-Depends: debhelper (>= 7), autotools-dev, libtool, libgtkhtml3.14-dev, libhal-storage-dev, intltool, autoconf, yasm (>= 0.7.0), libbz2-dev, zlib1g-dev +Build-Depends: debhelper (>= 6), autotools-dev, libtool, libgtkhtml3.14-dev, libhal-storage-dev, intltool, autoconf, yasm (>= 0.7.0), libbz2-dev, zlib1g-dev Standards-Version: 3.7.3 Homepage: http://www.handbrake.fr/ diff --git a/pkg/linux/debian/rules b/pkg/linux/debian/rules index 4ce0ec08d..036aa3b90 100755 --- a/pkg/linux/debian/rules +++ b/pkg/linux/debian/rules @@ -51,7 +51,7 @@ binary-indep: build install dh_testroot dh_installchangelogs -i dh_installdocs -i - dh_install -i + dh_install --sourcedir=debian/tmp -i dh_icons -i dh_desktop -i dh_link -i @@ -66,7 +66,7 @@ binary-indep: build install binary-arch: build install dh_testdir dh_testroot - dh_install -a + dh_install --sourcedir=debian/tmp -a dh_installchangelogs -a dh_installdocs -a dh_installexamples -a |