Codebase list google-nexus-tools / fdda3c5
Initial release 2.3 Devon Kearns 9 years ago
10 changed file(s) with 108 addition(s) and 0 deletion(s). Raw diff Collapse all Expand all
0 google-nexus-tools (2.3-0kali1) kali; urgency=low
1
2 * Initial release (Closes: 0001698)
3
4 -- Devon Kearns <[email protected]> Thu, 28 Aug 2014 10:31:32 -0600
0 Source: google-nexus-tools
1 Section: utils
2 Priority: optional
3 Maintainer: Devon Kearns <[email protected]>
4 Build-Depends: debhelper (>= 9)
5 Standards-Version: 3.9.5
6 Homepage: https://github.com/corbindavenport/nexus-tools
7 Vcs-Git: ssh://[email protected]/packages/google-nexus-tools.git
8 Vcs-Browser: http://git.kali.org/gitweb?p=packages/google-nexus-tools.git;a=summary
9
10 Package: google-nexus-tools
11 Architecture: any
12 Depends: ${misc:Depends}
13 Description: ADB and Fastboot for use with Nexus devices
14 Nexus Tools is an installer for the Android debug/development command-line
15 tools ADB (Android Device Bridge) and Fastboot for Mac OS X, Linux, and Google
16 Chrome/Chromium OS.
0 Format: http://www.debian.org/doc/packaging-manuals/copyright-format/1.0/
1 Upstream-Name: google-nexus-tools
2 Source: https://github.com/corbindavenport/nexus-tools
3
4 Files: *
5 Copyright: Corbin Davenport <[email protected]>
6 License: GPL-3
7 This program is free software; you can redistribute it and/or modify
8 it under the terms of the GNU General Public License as published by
9 the Free Software Foundation; either version 3 of the License, or
10 (at your option) any later version.
11 .
12 This package is distributed in the hope that it will be useful,
13 but WITHOUT ANY WARRANTY; without even the implied warranty of
14 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 GNU General Public License for more details.
16 .
17 You should have received a copy of the GNU General Public License
18 along with this program. If not, see <http://www.gnu.org/licenses/>
19 .
20 On Debian systems, the complete text of the GNU General
21 Public License version 3 can be found in "/usr/share/common-licenses/GPL-3".
22
23 Files: debian/*
24 Copyright: 2014 Devon Kearns <dookie@kalidev>
25 License: GPL-2+
26 This package is free software; you can redistribute it and/or modify
27 it under the terms of the GNU General Public License as published by
28 the Free Software Foundation; either version 2 of the License, or
29 (at your option) any later version.
30 .
31 This package is distributed in the hope that it will be useful,
32 but WITHOUT ANY WARRANTY; without even the implied warranty of
33 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
34 GNU General Public License for more details.
35 .
36 You should have received a copy of the GNU General Public License
37 along with this program. If not, see <http://www.gnu.org/licenses/>
38 .
39 On Debian systems, the complete text of the GNU General
40 Public License version 2 can be found in "/usr/share/common-licenses/GPL-2".
0 usr/bin
1 etc/udev/rules.d
0 README.md
0 #!/bin/bash
1
2 chmod 644 /etc/udev/rules.d/51-android.rules
3 chown root. /etc/udev/rules.d/51-android.rules 2>/dev/null
4 service udev restart 2>/dev/null
5 killall adb 2>/dev/null
6 chmod +x /usr/bin/nexus-adb
7 chmod +x /usr/bin/nexus-fastboot
0 #!/usr/bin/make -f
1 # -*- makefile -*-
2 # Sample debian/rules that uses debhelper.
3 # This file was originally written by Joey Hess and Craig Small.
4 # As a special exception, when this file is copied by dh-make into a
5 # dh-make output file, you may use that output file without restriction.
6 # This special exception was added by Craig Small in version 0.37 of dh-make.
7
8 # Uncomment this to turn on verbose mode.
9 #export DH_VERBOSE=1
10
11 %:
12 dh $@
13
14 DEB_HOST_ARCH ?= $(shell dpkg-architecture -qDEB_HOST_ARCH)
15
16 ifeq ($(findstring arm, $(DEB_HOST_ARCH))
17 adbbinfile=bin/linux-arm-adb
18 fastbootbinfile=bin/linux-arm-fastboot
19 else
20 adbbinfile=bin/linux-i386-adb
21 fastbootbinfile=bin/linux-i386-fastboot
22 endif
23
24 override_dh_auto_install:
25 dh_installdirs
26 install $(adbbinfile) $(CURDIR)/debian/google-nexus-tools/usr/bin/nexus-adb
27 install $(fastbootbinfile) $(CURDIR)/debian/google-nexus-tools/usr/bin/nexus-fastboot
28 install udev.txt $(CURDIR)/debian/google-nexus-tools/etc/udev/rules.d/51-android.rules
0 3.0 (quilt)
0 version=3
1
2 https://github.com/corbindavenport/nexus-tools/releases .*/v?(\d\S*)\.(?:tgz|tbz|txz|(?:tar\.(?:gz|bz2|xz)))