blob: a216a8d9585f1301cbff4cd8547144f344bd0998 (
plain)
1 # Packager: Simone Rota, sip at crux dot nu
2 # Maintainer: Simone Rota, sip at crux dot nu
3 # Description: an integrated development environment
4 # URL: http://www.eclipse.org
5 # Depends on: gtk, j2sdk
6
7 name=eclipse-sdk
8 version=3.2
9 release=1
10 source=(http://sunsite.informatik.rwth-aachen.de/eclipse/downloads/drops/R-3.2-200606291905/eclipse-SDK-3.2-linux-gtk.tar.gz \
11 eclipse.sh)
12
13 build() {
14 mkdir -p $PKG/usr/lib
15 mv eclipse $PKG/usr/lib/
16
17 mkdir -p $PKG/usr/bin
18 cp eclipse.sh $PKG/usr/bin/eclipse
19 chmod a+x $PKG/usr/bin/eclipse
20 chown -R root.root $PKG/usr
21 find $PKG -type f -perm -0664 -exec chmod 0644 {} \;
22 find $PKG -type d -perm -0775 -exec chmod 0755 {} \;
23 }
|