diff options
author | Simon Repp | 2021-01-10 10:12:36 +0100 |
---|---|---|
committer | Simon Repp | 2021-01-10 10:12:36 +0100 |
commit | b77409e87253c65e15520d6eb1cf2693a3eb6419 (patch) | |
tree | 7a1833c6423501232bd9d2870c2a80465452ca01 | |
parent | 3e5428ad158f18dce25974ee5ea30cb9bf398631 (diff) | |
download | aur-b77409e87253c65e15520d6eb1cf2693a3eb6419.tar.gz |
Correct desktop file exec path, remove qt4 dependency, add .gitignore
-rw-r--r-- | .SRCINFO | 9 | ||||
-rw-r--r-- | .gitignore | 5 | ||||
-rw-r--r-- | PKGBUILD | 22 |
3 files changed, 22 insertions, 14 deletions
@@ -1,17 +1,14 @@ -# Generated by mksrcinfo v8 -# Fri Jul 8 23:03:45 UTC 2016 pkgbase = vpaint-git pkgdesc = VPaint is an experimental vector graphics editor based on the Vector Animation Complex technology. (git version) - pkgver = v1.6.r0.g85d499a - pkgrel = 2 - url = http://www.vpaint.org + pkgver = v1.7.r16.g8619f0a + pkgrel = 3 + url = https://www.vpaint.org arch = i686 arch = x86_64 license = MIT makedepends = gendesk makedepends = icoutils makedepends = git - depends = qt4 depends = glu depends = qt5-base depends = libxkbcommon-x11 diff --git a/.gitignore b/.gitignore new file mode 100644 index 000000000000..11cb8b12e2c2 --- /dev/null +++ b/.gitignore @@ -0,0 +1,5 @@ +/pkg/ +/src/ +/vpaint-git/ +/*.pkg.tar.zst +/*.tar.gz @@ -1,14 +1,15 @@ -# Maintainer: TheNiceGuy <gabrielpolloguilbert@gmail.com> +# Maintainer: Simon Repp <simon@fdpl.io> +# Contributor: TheNiceGuy <gabrielpolloguilbert@gmail.com> pkgname=vpaint-git -pkgver=v1.6.r0.g85d499a -pkgrel=2 +pkgver=v1.7.r16.g8619f0a +pkgrel=3 pkgdesc='VPaint is an experimental vector graphics editor based on the Vector Animation Complex technology. (git version)' arch=('i686' 'x86_64') license=('MIT') -depends=('qt4' 'glu' 'qt5-base' 'libxkbcommon-x11') +depends=('glu' 'qt5-base' 'libxkbcommon-x11') makedepends=('gendesk' 'icoutils' 'git') -url='http://www.vpaint.org' +url='https://www.vpaint.org' conflicts=('vpaint') provides=() source=('vpaint-git::git+https://github.com/dalboris/vpaint.git') @@ -16,9 +17,14 @@ md5sums=('SKIP') prepare() { icotool -x -o $srcdir/vpaint.png $srcdir/$pkgname/src/Gui/images/VPaint.ico - gendesk -f --pkgname "$pkgname" --pkgdesc "Vector graphics editor" --name="VPaint" \ - --comment "Start VPaint" --exec "$pkgname" --categories "Graphics" \ - --custom "Icon=/usr/share/pixmaps/vpaint.png" + gendesk -f \ + --categories "Graphics" \ + --comment "Start VPaint" \ + --custom "Icon=/usr/share/pixmaps/vpaint.png" \ + --exec vpaint \ + --name="VPaint" \ + --pkgdesc "Vector graphics editor" \ + --pkgname "$pkgname" } pkgver() { |