diff options
author | davedatum | 2019-11-04 00:09:22 +0000 |
---|---|---|
committer | davedatum | 2019-11-04 00:09:22 +0000 |
commit | 260391ddbf80ea07b81113ce8bbbecf54cb0db85 (patch) | |
tree | 9f8e93fb4c466d2d9e48efdf84172b78574c8b48 | |
parent | e47e4128e55c073625b017dd921ce71715f32f7e (diff) | |
download | aur-260391ddbf80ea07b81113ce8bbbecf54cb0db85.tar.gz |
fixed var error
-rw-r--r-- | .SRCINFO | 4 | ||||
-rw-r--r-- | .gitignore | 6 | ||||
-rw-r--r-- | PKGBUILD | 4 |
3 files changed, 10 insertions, 4 deletions
@@ -1,14 +1,14 @@ pkgbase = heimer-git pkgdesc = simple cross-platform mind map and note-taking tool written in Qt. pkgver = 1.11.0.r0.g6a36683 - pkgrel = 1 + pkgrel = 1.2 url = https://github.com/juzzlin/heimer arch = x86_64 license = GPL3 makedepends = git makedepends = cmake depends = qt5-tools - source = heimer::git+https://github.com/juzzlin/heimer.git#tag=1.11.0 + source = heimer-git::git+https://github.com/juzzlin/heimer.git#tag=1.11.0 md5sums = SKIP pkgname = heimer-git diff --git a/.gitignore b/.gitignore new file mode 100644 index 00000000000..6bd5a05aa8f --- /dev/null +++ b/.gitignore @@ -0,0 +1,6 @@ +* + +!.SRCINFRO +!.git +!.gitignore +!PKGBUILD
\ No newline at end of file @@ -2,14 +2,14 @@ pkgname=heimer-git pkgver=1.11.0.r0.g6a36683 -pkgrel=1 +pkgrel=1.2 pkgdesc="simple cross-platform mind map and note-taking tool written in Qt." arch=("x86_64") url="https://github.com/juzzlin/heimer" license=("GPL3") depends=("qt5-tools") makedepends=("git" "cmake") -source=("heimer::git+$url.git#tag=1.11.0") +source=("${pkgname}::git+$url.git#tag=1.11.0") md5sums=('SKIP') pkgver() { |