Skip to content

Instantly share code, notes, and snippets.

@lubosz
Created February 15, 2013 15:08
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save lubosz/4960924 to your computer and use it in GitHub Desktop.
Save lubosz/4960924 to your computer and use it in GitHub Desktop.
eclipse-android 21.1.0 PKGBUILD
# Maintainer: Jakub Schmidtke <sjakub-at-gmail-dot-com>
# Contributor: Forrest L <cybercyst at gmail com>
# Contributor: Michael P <ptchinster@archlinux.us>
# Contributor: Marcin "eXine" M. <exine@jun.pl>
# Contributor: Artyom Smirnov <smirnoffjr@gmail.com>
# Contributor: Ashok `ScriptDevil` Gautham <ScriptDevil@gmail.com>
# Contributor: Laszlo Papp <djszapi2 at gmail com>
# Contributor: Antonio Santos <asantos at gmail dot com>
# Contributor: Lubosz Sarnecki <lubosz@gmail.com>
pkgname=eclipse-android
pkgver=21.1.0
pkgrel=1
pkgdesc='Eclipse plugin for Android'
url='https://developer.android.com/sdk/eclipse-adt.html'
license=('Apache' 'BSD' 'EPL' 'LGPL')
arch=('any')
depends=('android-sdk>=r21.0.1' 'java-environment>=6' 'eclipse>=3.6.2' 'eclipse-wtp')
makedepends=('unzip')
options=('!strip')
source=("http://dl.google.com/android/ADT-${pkgver}.zip" "LICENSE.kxml2")
sha1sums=('7e2e4b257c76097c07ed8577981d379c94651c45'
'c0a96dc032bb53e2921200c85f5cf650e49878e9')
package() {
_dest="${pkgdir}/usr/share/eclipse/dropins/android/eclipse"
cd "${srcdir}"
# Features
for _f in features/*.jar; do
_dir="${_dest}/${_f/.jar}"
mkdir -p "${_dir}"
unzip "${_f}" -d "${_dir}"
done
# Plugins
for _p in plugins/*.jar; do
install -Dm644 "${_p}" "${_dest}/${_p}"
done
install -D -m644 LICENSE.kxml2 "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE.kxml2"
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment