blob: 43c05d5fbdcdc79675139ea39f4c46c72f41bc61 (
plain)
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
|
# Maintainer: Hai Zhang <dreaming.in.code.zh@gmail.com>
# Taken from android-sdk-cmdline-tools-latest
_pkgname=android-sdk-cmdline-tools-latest
pkgname="${_pkgname}-dummy"
pkgver=13.0
pkgrel=1
_pkgdesc='Android SDK Command-line Tools (latest)'
pkgdesc="${_pkgdesc}, dummy package"
arch=('x86_64' 'i686')
url='https://developer.android.com/studio'
license=('custom')
depends=('glibc' 'java-runtime')
optdepends=('android-sdk-platform-tools: adb, aapt, aidl, dexdump and dx'
'android-udev: udev rules for Android devices')
provides=('android-sdk' "${_pkgname}")
conflicts=("${_pkgname}")
install="${pkgname}.install"
source=("${_pkgname}.sh::https://aur.archlinux.org/cgit/aur.git/plain/${_pkgname}.sh?h=${_pkgname}"
"${_pkgname}.csh::https://aur.archlinux.org/cgit/aur.git/plain/${_pkgname}.csh?h=${_pkgname}")
sha1sums=('cbcfb844067eb40d7cab029c481f3f94f31f0518'
'f71b94781633743850c760322dc3b370bc63fcaa')
package() {
install -Dm755 "${_pkgname}.sh" "${pkgdir}/etc/profile.d/${_pkgname}.sh"
install -Dm755 "${_pkgname}.csh" "${pkgdir}/etc/profile.d/${_pkgname}.csh"
}
|