#### this file is sourced not run
PKGVER=2016.10
PKGBUILD=1
PKGARCH=x86_64

# source: james
TARBALL= # included
MD5SUM=  # included
SRC_URL= # https://github.com/spion/adbfs-rootless
BUNDLE=

SLACKREQ='libfuse'
SLACKDESC="adbfs-rootless: adbfs-rootless $PKGVER (Android files using ADB)
adbfs-rootless: 
adbfs-rootless: Access files in Android Phones using adb. You must have 'adb' 
adbfs-rootless: installed somewhere in your path, and since most adb binaries are 
adbfs-rootless: 32-bit, you probably also need 32-bit library SFS loaded too.
adbfs-rootless: 
adbfs-rootless: https://github.com/spion/adbfs-rootless
adbfs-rootless: 
adbfs-rootless: Note: adbfs does not work for Android 7.x (Nougat) or newer
adbfs-rootless: 
adbfs-rootless: 
"

### default pkg_download
### prepare
pkg_prepare() {
	: nothing
}

### default pkg_package
### build
pkg_build() {
	cd /tmp/pkg/src &&
	make &&
	install -m755 adbfs /usr/bin &&
	pkg_build_slackdesc
}

