diff options
-rw-r--r-- | Distrib/BtsFiling.mdwn | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/Distrib/BtsFiling.mdwn b/Distrib/BtsFiling.mdwn index a883fe98..40f115d7 100644 --- a/Distrib/BtsFiling.mdwn +++ b/Distrib/BtsFiling.mdwn @@ -7,10 +7,20 @@ Managing Debian packages and using the BTS is quite simple. If you're new to Deb apt-get source <package> +note: this should unpack already + * and unpack with: dpkg-source -x <package>x-y_z.dsc +* then get all dependencies: + + apt-get -y build-dep <package> + +note: if some dependencies are missing, it most probably means you have to port them first. follow this instructions recursively until done + + :) + * Debian packages have a makefile in debian/rules, with (at least) the following targets: <dl> <dt> build</dt> <dd> Yup, to build </dd> |