1 # Maintainer: Christoph Drexler <chrdr at gmx dot at>
6 pkgdesc="AspectJ Development Tools (Eclipse Plugin)"
8 url="http://www.eclipse.org/ajdt/"
10 depends=('eclipse>=3.7')
11 source=(http://download.eclipse.org/tools/ajdt/37/update/ajdt_${pkgver}_for_eclipse_3.7.zip)
12 md5sums=('148a7ebe526e2bf9e9a6f7652dfbe9c9')
20 _dest=${pkgdir}/usr/share/eclipse/dropins/${pkgname/eclipse-}/eclipse
25 find features -type f | while read _feature ; do
26 if [[ ${_feature} =~ (.*\.jar$) ]] ; then
27 install -dm755 ${_dest}/${_feature%*.jar}
28 cd ${_dest}/${_feature/.jar}
29 jar xf ${srcdir}/${_feature}
31 install -Dm644 ${_feature} ${_dest}/${_feature}
36 find plugins -type f | while read _plugin ; do
37 install -Dm644 ${_plugin} ${_dest}/${_plugin}