24 lines
696 B
Plaintext
24 lines
696 B
Plaintext
# Packager: Simone Rota, sip at crux dot nu
|
|
# Maintainer: Simone Rota, sip at crux dot nu
|
|
# Description: an integrated development environment
|
|
# URL: http://www.eclipse.org
|
|
# Depends on: gtk, jdk
|
|
|
|
name=eclipse-sdk
|
|
version=3.2
|
|
release=1
|
|
source=(http://sunsite.informatik.rwth-aachen.de/eclipse/downloads/drops/R-3.2-200606291905/eclipse-SDK-3.2-linux-gtk.tar.gz \
|
|
eclipse.sh)
|
|
|
|
build() {
|
|
mkdir -p $PKG/usr/lib
|
|
mv eclipse $PKG/usr/lib/
|
|
|
|
mkdir -p $PKG/usr/bin
|
|
cp eclipse.sh $PKG/usr/bin/eclipse
|
|
chmod a+x $PKG/usr/bin/eclipse
|
|
chown -R root.root $PKG/usr
|
|
find $PKG -type f -perm -0664 -exec chmod 0644 {} \;
|
|
find $PKG -type d -perm -0775 -exec chmod 0755 {} \;
|
|
}
|