mirror of
https://github.com/archlinux/aur.git
synced 2026-02-14 04:10:20 +01:00
qtcreator-tabbededitor-plugin-git: Add package
This commit is contained in:
commit
e1155a44a0
2 changed files with 54 additions and 0 deletions
20
.SRCINFO
Normal file
20
.SRCINFO
Normal file
|
|
@ -0,0 +1,20 @@
|
|||
pkgbase = qtcreator-tabbededitor-plugin-git
|
||||
pkgdesc = QtCreator Tabbed Editor Plugin
|
||||
pkgver = v0.0.3.1.g154a0a3
|
||||
pkgrel = 1
|
||||
url = http://sourceforge.net/p/tabbededitor/
|
||||
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
|
||||
md5sums = SKIP
|
||||
|
||||
pkgname = qtcreator-tabbededitor-plugin-git
|
||||
|
||||
34
PKGBUILD
Normal file
34
PKGBUILD
Normal file
|
|
@ -0,0 +1,34 @@
|
|||
# Maintainer: Oleg Shparber <trollixx+aur@gmail.com>
|
||||
|
||||
pkgname=qtcreator-tabbededitor-plugin-git
|
||||
pkgver=v0.0.3.1.g154a0a3
|
||||
pkgrel=1
|
||||
pkgdesc="QtCreator Tabbed Editor Plugin"
|
||||
groups=('qt' 'qt5')
|
||||
arch=('i686' 'x86_64')
|
||||
url="http://sourceforge.net/p/tabbededitor/"
|
||||
license=('GPL3' 'LGPL')
|
||||
depends=('qtcreator')
|
||||
makedepends=('git' 'qtcreator-src')
|
||||
replaces=()
|
||||
provides=('qtcreator-tabbededitor-plugin')
|
||||
conflicts=()
|
||||
source=('git://github.com/trollixx/qtcreator-tabbededitor-plugin.git')
|
||||
md5sums=('SKIP')
|
||||
_gitname="qtcreator-tabbededitor-plugin"
|
||||
|
||||
pkgver() {
|
||||
cd ${srcdir}/${_gitname}
|
||||
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"
|
||||
make
|
||||
}
|
||||
|
||||
package() {
|
||||
cd ${srcdir}/${_gitname}
|
||||
cp -r build/* ${pkgdir}
|
||||
}
|
||||
Loading…
Add table
Reference in a new issue