Please update with 3.6.0 :
http://download.qt.io/official_releases/qtcreator/3.6/3.6.0/qt-creator-opensource-src-3.6.0.tar.gz.mirrorlist
md5 is : 6b0052a6d671318fca540a190cacd97d
By the way since AUR migrated to git, isn't there a way to allow pull requests to AUR packages ? This would remove a lot of burden on maintainers I think.
Search Criteria
Package Details: qtcreator-src 4.6.0-1
Git Clone URL: | https://aur.archlinux.org/qtcreator-src.git (read-only) |
---|---|
Package Base: | qtcreator-src |
Description: | Source code of Qt Creator IDE needed to build plugins |
Upstream URL: | http://wiki.qt.io/Category:Tools::QtCreator |
Licenses: | |
Submitter: | felixzero |
Maintainer: | trollixx |
Last Packager: | trollixx |
Votes: | 12 |
Popularity: | 0.277250 |
First Submitted: | 2011-09-25 21:38 |
Last Updated: | 2018-04-13 22:24 |
Dependencies (0)
Required by (9)
- qtcreator-cmakeprojectmanager2-plugin-git (make)
- qtcreator-cppcheck-plugin-git (make)
- qtcreator-doxygen (make)
- qtcreator-freebox-plugin-git (make)
- qtcreator-markview-plugin-git (make)
- qtcreator-ros-git (make)
- qtcreator-spellchecker-plugin-git (make)
- qtcreator-tabbededitor-plugin-git (make)
- qtcreator-terminal-plugin-git (make)
Sources (1)
Latest Comments
Martchus commented on 2017-11-18 21:17
jcelerier commented on 2015-12-19 10:43
fargie_s commented on 2015-12-13 23:40
Updated pkgbuild: https://gist.github.com/fargies/f04c3702537db1f67dab
Matches current qtcreator package, but breaks some plugins
Sanya_M commented on 2015-08-02 10:15
diff --git a/PKGBUILD b/PKGBUILD
index f16108a..8279a27 100644
--- a/PKGBUILD
+++ b/PKGBUILD
@@ -5,8 +5,7 @@
# URL: https://github.com/trollixx/aur-packages
pkgname=qtcreator-src
-_pkgver=3.4
-pkgver=${_pkgver}.1
+pkgver=3.4.2
pkgrel=1
pkgdesc="Source code of Qt Creator IDE needed to build plugins"
arch=('any')
@@ -15,10 +14,8 @@ license=('LGPL')
depends=()
options=('!strip')
makedepends=()
-source=("https://download.qt.io/official_releases/qtcreator/${_pkgver}/${pkgver}/qt-creator-opensource-src-${pkgver}.tar.gz")
-md5sums=('bcbae4a567c93158babe3b7f42d01219')
-
-PKGEXT='.pkg.tar'
+source=("https://download.qt.io/official_releases/qtcreator/${pkgver%.*}/${pkgver}/qt-creator-opensource-src-${pkgver}.tar.gz")
+md5sums=('4a72e361a07576c140d1d67a54b16226')
package () {
cd "${srcdir}"
pashazz commented on 2014-11-27 16:07
3.2.2 is out; please up to latest version =)
trollixx commented on 2014-05-03 06:25
3.1.0 is out, update, please.
gs93 commented on 2014-03-26 20:51
I was unsure about updating to a beta version, but I guess this package should stay in sync with extra/qtcreator.
trollixx commented on 2014-03-25 20:58
Current version of Qt Creator in repositories is 3.1.0beta1-1, so it's not possible to use qtcreator-src to build plugins now.
Alir3z4 commented on 2013-02-02 20:13
Okay, Updated to 2.6 now ;)
kralyk commented on 2011-12-13 14:58
Updated pkgbuild: https://gist.github.com/1472417
Customizing the extension in the PKGBUILD file is not nice IMHO. Instead, let the user make the decision like any other package does.
I understand that it might be desirable to have a special configuration for some packages. However, introducing a separate variable for that purpose (which could be set in /etc/makepkg.conf) would be less intrusive.
In PKGBUILD:
```
[[ $QT_CREATOR_SRC_PKGEXT ]] && PKGEXT="${QT_CREATOR_SRC_PKGEXT}"
```
In /etc/makepkg.conf:
```
QT_CREATOR_SRC_PKGEXT='.pkg.tar'
```