Add quickterminal-git

This commit is contained in:
Oleg Shparber 2014-07-13 09:26:39 -07:00
commit 80a95ec088
2 changed files with 49 additions and 0 deletions

17
.SRCINFO Normal file
View file

@ -0,0 +1,17 @@
pkgbase = quickterminal-git
pkgdesc = Lightweight Qt-based terminal emulator
pkgver = 0.0.1
pkgrel = 1
url = https://github.com/trollixx/quickterminal
arch = i686
arch = x86_64
license = GPL2
makedepends = git
depends = qtermwidget-qt5-git
provides = quickterminal
conflicts = quickterminal
source = git://github.com/trollixx/quickterminal.git
md5sums = SKIP
pkgname = quickterminal-git

32
PKGBUILD Normal file
View file

@ -0,0 +1,32 @@
# Maintainer: Oleg Shparber <trollixx+aur@gmail.com>
_appname=quickterminal
pkgname=$_appname-git
pkgver=0.0.1
pkgrel=1
pkgdesc='Lightweight Qt-based terminal emulator'
arch=('i686' 'x86_64')
url='https://github.com/trollixx/quickterminal'
license=('GPL2')
depends=('qtermwidget-qt5-git')
makedepends=('git')
provides=($_appname)
conflicts=($_appname)
source=('git://github.com/trollixx/quickterminal.git')
md5sums=('SKIP')
pkgver() {
cd ${srcdir}/${_appname}
git describe --always | sed 's|-|.|g' | sed 's|v||g'
}
build() {
cd ${srcdir}/${_appname}
qmake PREFIX=/usr
make
}
package() {
cd "${_appname}"
make INSTALL_ROOT="$pkgdir" install
}