mirror of
https://github.com/archlinux/aur.git
synced 2026-02-13 20:13:31 +01:00
qtcreator-tabbededitor-plugin-git: Updates and fixes
This commit is contained in:
parent
e1155a44a0
commit
3e52e1de2f
2 changed files with 17 additions and 16 deletions
8
.SRCINFO
8
.SRCINFO
|
|
@ -1,19 +1,19 @@
|
|||
pkgbase = qtcreator-tabbededitor-plugin-git
|
||||
pkgdesc = QtCreator Tabbed Editor Plugin
|
||||
pkgver = v0.0.3.1.g154a0a3
|
||||
pkgver = v0.0.3.24.g9f338d1
|
||||
pkgrel = 1
|
||||
url = http://sourceforge.net/p/tabbededitor/
|
||||
url = https://github.com/trollixx/qtcreator-tabbededitor-plugin
|
||||
arch = i686
|
||||
arch = x86_64
|
||||
groups = qt
|
||||
groups = qt5
|
||||
license = GPL3
|
||||
license = LGPL
|
||||
makedepends = git
|
||||
makedepends = qtcreator-src
|
||||
depends = qtcreator
|
||||
provides = qtcreator-tabbededitor-plugin
|
||||
source = git://github.com/trollixx/qtcreator-tabbededitor-plugin.git
|
||||
conflicts = qtcreator-tabbededitor-plugin
|
||||
source = qtcreator-tabbededitor-plugin-git::git://github.com/trollixx/qtcreator-tabbededitor-plugin.git
|
||||
md5sums = SKIP
|
||||
|
||||
pkgname = qtcreator-tabbededitor-plugin-git
|
||||
|
|
|
|||
25
PKGBUILD
25
PKGBUILD
|
|
@ -1,34 +1,35 @@
|
|||
# Maintainer: Oleg Shparber <trollixx+aur@gmail.com>
|
||||
# URL: https://github.com/trollixx/aur-packages
|
||||
|
||||
pkgname=qtcreator-tabbededitor-plugin-git
|
||||
pkgver=v0.0.3.1.g154a0a3
|
||||
_pkgname=qtcreator-tabbededitor-plugin
|
||||
pkgname=${_pkgname}-git
|
||||
pkgver=v0.0.3.24.g9f338d1
|
||||
pkgrel=1
|
||||
pkgdesc="QtCreator Tabbed Editor Plugin"
|
||||
groups=('qt' 'qt5')
|
||||
arch=('i686' 'x86_64')
|
||||
url="http://sourceforge.net/p/tabbededitor/"
|
||||
license=('GPL3' 'LGPL')
|
||||
url='https://github.com/trollixx/qtcreator-tabbededitor-plugin'
|
||||
license=('LGPL')
|
||||
depends=('qtcreator')
|
||||
makedepends=('git' 'qtcreator-src')
|
||||
replaces=()
|
||||
provides=('qtcreator-tabbededitor-plugin')
|
||||
conflicts=()
|
||||
source=('git://github.com/trollixx/qtcreator-tabbededitor-plugin.git')
|
||||
conflicts=('qtcreator-tabbededitor-plugin')
|
||||
source=("$pkgname::git://github.com/trollixx/qtcreator-tabbededitor-plugin.git")
|
||||
md5sums=('SKIP')
|
||||
_gitname="qtcreator-tabbededitor-plugin"
|
||||
|
||||
pkgver() {
|
||||
cd ${srcdir}/${_gitname}
|
||||
cd $pkgname
|
||||
git describe --always | sed 's|-|.|g'
|
||||
}
|
||||
|
||||
build() {
|
||||
cd ${srcdir}/${_gitname}
|
||||
QTC_SOURCE=/usr/src/qtcreator QTC_BUILD=build qmake LIBS+="-L/usr/lib/qtcreator/ -L/usr/lib/qtcreator/plugins/QtProject"
|
||||
cd $pkgname
|
||||
# TODO: QTC_BUILD=/usr
|
||||
QTC_SOURCE=/usr/src/qtcreator QTC_BUILD=build/usr qmake LIBS+="-L/usr/lib/qtcreator -L/usr/lib/qtcreator/plugins"
|
||||
make
|
||||
}
|
||||
|
||||
package() {
|
||||
cd ${srcdir}/${_gitname}
|
||||
cd $pkgname
|
||||
cp -r build/* ${pkgdir}
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue