1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63
|
Source: android-platform-build
Section: devel
Priority: extra
Maintainer: Android tools Maintainer <android-tools-devel@lists.alioth.debian.org>
Uploaders: Hans-Christoph Steiner <hans@eds.org>
Build-Depends: debhelper (>=9),
zlib1g-dev,
android-libutils-dev,
android-liblog-dev,
android-libcutils-dev,
android-system-dev
Standards-Version: 3.9.6
Homepage: https://android.googlesource.com/platform/build
Vcs-Git: https://alioth.debian.org/anonscm/git/android-tools/android-platform-build.git
Vcs-Browser: http://anonscm.debian.org/cgit/android-tools/android-platform-build.git
Package: zipalign
Architecture: any
Depends: ${misc:Depends}, ${shlibs:Depends}
Description: Align zip/jar/apk along byte boundaries
The purpose of zipalign is to ensure that all uncompressed data starts
with a particular alignment relative to the start of the file. This
allows those portions to be accessed directly with mmap() even if they
contain binary data with alignment restrictions.
.
Some data needs to be word-aligned for easy access, others might benefit
from being page-aligned. The adjustment is made by altering the size of
the "extra" field in the zip Local File Header sections. Existing data
in the "extra" fields may be altered by this process.
.
Compressed data isn't very useful until it's uncompressed, so there's no
need to adjust its alignment.
.
Alterations to the archive, such as renaming or deleting entries, will
potentially disrupt the alignment of the modified entry and all later
entries. Files added to an "aligned" archive will not be aligned.
.
By default, zipalign will not overwrite an existing output file. With the
"-f" flag, an existing file will be overwritten.
.
You can use the "-c" flag to test whether a zip archive is properly aligned.
Package: android-libhost
Section: libs
Architecture: any
Depends: ${misc:Depends}, ${shlibs:Depends}
Description: Android utility library for cross-platform tools
Library providing utility functions to Android related tools. This is needed
purely to get various Android utilities working.
Package: android-libhost-dev
Section: libdevel
Architecture: any
Depends: ${misc:Depends},
libc-dev,
android-libhost (= ${binary:Version})
Breaks: android-libhost (<< 21-3~)
Replaces: android-libhost (<< 21-3~)
Description: Android utility library for cross-platform tools - headers
Library providing utility functions to Android related tools. This is needed
purely to get various Android utilities working.
.
This package contains the development files.
|