opt/eclipse-sdk/Pkgfile

24 lines
701 B
Plaintext
Raw Normal View History

2006-04-13 23:43:04 +02:00
# Packager: Simone Rota, sip at crux dot nu
# Maintainer: Simone Rota, sip at crux dot nu
2006-02-23 16:26:10 +01:00
# Description: an integrated development environment
# URL: http://www.eclipse.org
2006-10-07 18:17:25 +02:00
# Depends on: gtk, jdk
2006-02-23 16:26:10 +01:00
name=eclipse-sdk
2007-04-16 13:09:50 +02:00
version=3.2.2
2006-07-08 11:46:25 +02:00
release=1
2007-04-16 13:09:50 +02:00
source=(http://sunsite.informatik.rwth-aachen.de/eclipse/downloads/drops/R-3.2.2-200702121330/eclipse-SDK-3.2.2-linux-gtk.tar.gz\
2006-02-23 16:26:10 +01:00
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 {} \;
}