summarylogtreecommitdiffstats
diff options
context:
space:
mode:
authorPopolon2020-10-05 22:18:23 +0200
committerPopolon2020-10-05 22:18:23 +0200
commit78ea32862b6672e63b152d228a73617148b78a9e (patch)
tree4617fbdea8692e90b405b9b99c0b0b6381721269
parentf1358fa7048390f95a3ec297e1b7b480b02762a2 (diff)
downloadaur-78ea32862b6672e63b152d228a73617148b78a9e.tar.gz
correct my wrong utilisation of branch in git package, resolve an issue with a new version of the software
-rw-r--r--.SRCINFO6
-rw-r--r--PKGBUILD11
2 files changed, 9 insertions, 8 deletions
diff --git a/.SRCINFO b/.SRCINFO
index 1a4fcb7af887..a8fc6abaf68b 100644
--- a/.SRCINFO
+++ b/.SRCINFO
@@ -1,7 +1,7 @@
pkgbase = pencil2d-mypaint-git
pkgdesc = Animation/drawing software, that lets you create traditional hand-drawn animation using both bitmap and vector graphics with mypaint brushes extension testing branch
- pkgver = 4505.1fc3f62a
- pkgrel = 1
+ pkgver = 4563.627016bd
+ pkgrel = 2
url = http://www.pencil2d.org/
install = pencil2d.install
arch = i686
@@ -17,7 +17,7 @@ pkgbase = pencil2d-mypaint-git
provides = pencil2d
conflicts = pencil2d
options = !staticlibs
- source = pencil2d::git+https://github.com/CandyFace/pencil.git
+ source = pencil2d::git+https://github.com/CandyFace/pencil.git#branch=implement_mypaint_nobitmapsurface
md5sums = SKIP
pkgname = pencil2d-mypaint-git
diff --git a/PKGBUILD b/PKGBUILD
index 2f0cde8ffdde..e7bc1412895d 100644
--- a/PKGBUILD
+++ b/PKGBUILD
@@ -5,8 +5,9 @@
pkgname=pencil2d-mypaint-git
_gitname=pencil2d
-pkgver=4505.1fc3f62a
-pkgrel=1
+_branchname=implement_mypaint_nobitmapsurface
+pkgver=4563.627016bd
+pkgrel=2
pkgdesc="Animation/drawing software, that lets you create traditional hand-drawn animation using both bitmap and vector graphics with mypaint brushes extension testing branch"
arch=('i686' 'x86_64')
url="http://www.pencil2d.org/"
@@ -17,7 +18,7 @@ provides=('pencil2d')
conflicts=('pencil2d')
options=('!staticlibs')
install=pencil2d.install
-source=('pencil2d::git+https://github.com/CandyFace/pencil.git')
+source=("pencil2d::git+https://github.com/CandyFace/pencil.git#branch=${_branchname}")
md5sums=('SKIP')
pkgver()
@@ -29,8 +30,8 @@ pkgver()
build()
{
cd "${_gitname}"
- git checkout implement_mypaint_nobitmapsurface
-
+ msg "make cleaen..."
+ make clean
msg "Starting qmake..."
qmake PREFIX=/usr
msg "Starting make..."