mirror of
https://github.com/archlinux/aur.git
synced 2026-03-07 14:49:22 +01:00
Add quickterminal-git
This commit is contained in:
commit
80a95ec088
2 changed files with 49 additions and 0 deletions
17
.SRCINFO
Normal file
17
.SRCINFO
Normal 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
32
PKGBUILD
Normal 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
|
||||
}
|
||||
Loading…
Add table
Reference in a new issue