blob: 66f2d04f74041e9cf9e25cf35060e5650e4d96d2 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
|
# Maintainer: Adam Perkowski <adas1per@protonmail.com>
# Contributor: Doug Newgard <scimmia at archlinux dot info>
# Contributor: Andrey Mivrenik <gim at fastmail dot fm>
# Contributor: Glen Oakley <goakley123@gmail.com>
_pkgname=cool-retro-term
pkgname=$_pkgname-git
pkgver=1.2.0.r3.gf157648
pkgrel=1
pkgdesc='A good looking terminal emulator which mimics the old cathode display - git version'
arch=('i686' 'x86_64')
url="https://github.com/Swordfish90/$_pkgname"
license=('GPL-3.0')
depends=('hicolor-icon-theme' 'qt5-declarative')
makedepends=('git' 'qt5-quickcontrols' 'qt5-quickcontrols2' 'qt5-graphicaleffects' 'qmltermwidget-git')
provides=("$_pkgname")
conflicts=("$_pkgname")
source=("git+https://github.com/Swordfish90/$_pkgname")
sha256sums=(SKIP)
prepare() {
cd $_pkgname
sed -i '/qmltermwidget/d' cool-retro-term.pro
}
pkgver () {
cd $_pkgname
git describe --long --tags | sed -r 's/^v//;s/-RC/RC/;s/([^-]*-g)/r\1/;s/-/./g'
}
build() {
cd $_pkgname
qmake
make
}
package() {
cd $_pkgname
make INSTALL_ROOT="$pkgdir" install
}
|