summarylogtreecommitdiffstats
diff options
context:
space:
mode:
authorHugo Parente Lima2020-08-04 23:09:06 -0300
committerHugo Parente Lima2020-08-04 23:09:06 -0300
commit0af644cef28d4856b733b06647ab2c6672cb114f (patch)
tree7961007db00c5dedf67d2757f8f3dafc8eafd306
parent15b5cbb363c854533bc6702c6003d466ef18224f (diff)
downloadaur-0af644cef28d4856b733b06647ab2c6672cb114f.tar.gz
Add libgit2 to dependencies.
-rw-r--r--.SRCINFO3
-rw-r--r--PKGBUILD4
-rwxr-xr-xupdate_pkg2
3 files changed, 5 insertions, 4 deletions
diff --git a/.SRCINFO b/.SRCINFO
index 7290b43247e8..d9c8a904d0db 100644
--- a/.SRCINFO
+++ b/.SRCINFO
@@ -1,7 +1,7 @@
pkgbase = tijolo-git
pkgdesc = Lightweight, keyboard-oriented IDE for the masses
pkgver = HEAD
- pkgrel = 1
+ pkgrel = 2
url = https://github.com/hugopl/tijolo
arch = x86_64
license = MIT
@@ -14,6 +14,7 @@ pkgbase = tijolo-git
depends = libyaml>=0.2.0
depends = gtksourceview4
depends = nerd-fonts-jetbrains-mono
+ depends = libgit2
conflicts = tijolo
source = tijolo-git::git+https://github.com/hugopl/tijolo.git
sha256sums = SKIP
diff --git a/PKGBUILD b/PKGBUILD
index ec69fa0ea9b4..8d7f4fd583d8 100644
--- a/PKGBUILD
+++ b/PKGBUILD
@@ -2,13 +2,13 @@
pkgname=tijolo-git
pkgver=HEAD
-pkgrel=1
+pkgrel=2
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" "libyaml>=0.2.0" "gtksourceview4" "nerd-fonts-jetbrains-mono")
+depends=("gc" "libevent" "pcre" "libyaml>=0.2.0" "gtksourceview4" "nerd-fonts-jetbrains-mono" "libgit2")
makedepends=("git" "crystal>=0.35.0" "shards>=0.10.0")
source=("tijolo-git::git+https://github.com/hugopl/tijolo.git")
sha256sums=('SKIP')
diff --git a/update_pkg b/update_pkg
index d630e2135efd..db505278cbf5 100755
--- a/update_pkg
+++ b/update_pkg
@@ -3,7 +3,7 @@
# new_sha = `makepkg -g`
pkgbuild = File.readlines("PKGBUILD").map do |line|
if line =~ /\Apkgver=/
- "pkgver=GIT\n"
+ "pkgver=HEAD\n"
else
line
end