blob: 2088d46bd8325230a9f7dee316ba2becb402b9a6 (
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
|
# Maintainer: Hugo Parente Lima <hugo.pl@gmail.com>
pkgname=tijolo-git
pkgver=HEAD
pkgrel=5
pkgdesc="Lightweight, keyboard-oriented IDE for the masses"
arch=("x86_64")
conflicts=("tijolo")
url="https://github.com/hugopl/tijolo"
license=("MIT")
depends=("gc" "libevent" "pcre" "gtksourceview4" "nerd-fonts-jetbrains-mono" "libgit2" "editorconfig-core-c" "ttf-font-awesome>=5.15")
makedepends=("git" "crystal>=1.0.0" "shards>=0.13.0")
source=("tijolo-git::git+https://github.com/hugopl/tijolo.git")
sha256sums=('SKIP')
pkgver() {
cd "$pkgname"
git describe --tags | sed s/-/+/g | sed s/v//
}
build() {
cd "$srcdir/tijolo-git"
make
}
check() {
cd "$srcdir/tijolo-git"
crystal spec
}
package() {
cd "$srcdir/tijolo-git"
make install DESTDIR="${pkgdir}"
}
|