mirror of
https://github.com/TrentSPalmer/aur-packages.git
synced 2024-10-31 20:28:47 -07:00
28 lines
683 B
Bash
28 lines
683 B
Bash
|
# Maintainer: Trent
|
||
|
# contributor: Anatol
|
||
|
|
||
|
pkgname=adb-sync-git
|
||
|
pkgver=r35.fb7c549
|
||
|
pkgrel=1
|
||
|
pkgdesc='A tool to synchronize files between a PC and an Android device using the ADB'
|
||
|
url='https://github.com/google/adb-sync'
|
||
|
arch=(any)
|
||
|
depends=(python android-tools android-udev)
|
||
|
makedepends=(git)
|
||
|
license=(Apache)
|
||
|
source=(git+https://github.com/google/adb-sync)
|
||
|
sha1sums=('SKIP')
|
||
|
|
||
|
pkgver() {
|
||
|
cd adb-sync
|
||
|
printf "r%s.%s" "$(git rev-list --count HEAD)" "$(git rev-parse --short HEAD)"
|
||
|
}
|
||
|
|
||
|
package() {
|
||
|
cd adb-sync
|
||
|
install -m755 -d "$pkgdir/usr/bin"
|
||
|
install -m755 -t "$pkgdir/usr/bin" adb-sync adb-channel
|
||
|
|
||
|
install -D -m644 LICENSE "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
|
||
|
}
|