Date: Sunday, October 16, 2016 @ 03:03:06 Author: anatolik Revision: 192344
archrelease: copy trunk to community-testing-any Added: android-udev/repos/community-testing-any/ android-udev/repos/community-testing-any/PKGBUILD (from rev 192343, android-udev/trunk/PKGBUILD) android-udev/repos/community-testing-any/android-udev.install (from rev 192343, android-udev/trunk/android-udev.install) ----------------------+ PKGBUILD | 20 ++++++++++++++++++++ android-udev.install | 4 ++++ 2 files changed, 24 insertions(+) Copied: android-udev/repos/community-testing-any/PKGBUILD (from rev 192343, android-udev/trunk/PKGBUILD) =================================================================== --- community-testing-any/PKGBUILD (rev 0) +++ community-testing-any/PKGBUILD 2016-10-16 03:03:06 UTC (rev 192344) @@ -0,0 +1,20 @@ +# $Id$ +# Maintainer: M0Rf30 +# Contributor: marlock + +pkgname=android-udev +pkgver=20161014 +pkgrel=1 +pkgdesc='Udev rules to connect Android devices to your linux box' +arch=(any) +url='https://github.com/M0Rf30/android-udev-rules' +license=(GPL3) +depends=(udev libmtp) +install='android-udev.install' +source=(android-udev-$pkgver.zip::https://github.com/M0Rf30/android-udev-rules/archive/$pkgver.zip) +md5sums=('8abda63903acd29b14322cfc29ebf320') + +package() { + cd android-udev-rules-$pkgver + install -Dm 644 51-android.rules "$pkgdir"/usr/lib/udev/rules.d/51-android.rules +} Copied: android-udev/repos/community-testing-any/android-udev.install (from rev 192343, android-udev/trunk/android-udev.install) =================================================================== --- community-testing-any/android-udev.install (rev 0) +++ community-testing-any/android-udev.install 2016-10-16 03:03:06 UTC (rev 192344) @@ -0,0 +1,4 @@ +post_install() { + getent group adbusers >/dev/null || groupadd -r adbusers + true +}