summaryrefslogtreecommitdiffstats
path: root/extra/qtcreator/Pkgfile
diff options
context:
space:
mode:
authortnut <tnut at nutyx dot com>2011-10-08 18:49:55 +0200
committertnut <tnut at nutyx dot com>2011-10-08 18:49:55 +0200
commite76d64c4492e51859bc01a2baa6809ff88f37d84 (patch)
tree3389c9db79ed66d56192b2110f39ed7801062216 /extra/qtcreator/Pkgfile
parent2401690e019cfe9e490373f04944ba2ca58bb9a2 (diff)
downloadnutyx-extra-e76d64c4492e51859bc01a2baa6809ff88f37d84.tar.gz
nutyx-extra-e76d64c4492e51859bc01a2baa6809ff88f37d84.tar.bz2
nutyx-extra-e76d64c4492e51859bc01a2baa6809ff88f37d84.tar.xz
nutyx-extra-e76d64c4492e51859bc01a2baa6809ff88f37d84.zip
ajout de qtcreator 2.3.1-1
Diffstat (limited to 'extra/qtcreator/Pkgfile')
-rw-r--r--extra/qtcreator/Pkgfile31
1 files changed, 31 insertions, 0 deletions
diff --git a/extra/qtcreator/Pkgfile b/extra/qtcreator/Pkgfile
new file mode 100644
index 000000000..7053720c7
--- /dev/null
+++ b/extra/qtcreator/Pkgfile
@@ -0,0 +1,31 @@
+# Description: IDE légère pour le développement multiplatforme basé sur qt
+# URL: http://qt.nokia.com/products/developer-tools
+# Maintainer: NuTyX core team
+# Packager: tnut at nutyx dot com
+# Depends on: qt
+# Run on: qt
+
+name=qtcreator
+version=2.3.1
+release=1
+source=(http://get.qt.nokia.com/$name/qt-creator-${version}-src.tar.gz)
+build() {
+ mkdir build && cd build
+ qmake ../qt-creator-${version}-src/qtcreator.pro
+ make INSTALL_ROOT=$PKG/usr/ install
+ mkdir -p $PKG/usr/share/applications
+cat > $PKG/usr/share/applications/qtcreator.desktop << "EOF"
+[Desktop Entry]
+Encoding=UTF-8
+Exec=/usr/bin/qtcreator
+Name=Qt-Creator
+GenericName=C++ IDE
+Name[fr]=Environnement de développement basé sur qt
+GenericName[fr]=Environnement de développement pour C++
+X-KDE-StartupNotify=true
+Icon=/usr/share/icons/hicolor/128x128/apps/qtcreator.png
+Terminal=false
+Type=Application
+Categories=Qt;Development
+EOF
+}