diff options
author | haawda | 2020-08-07 21:08:57 +0200 |
---|---|---|
committer | haawda | 2020-08-07 21:08:57 +0200 |
commit | 91ee77112df7616cc2da5cae29565475eedc1e18 (patch) | |
tree | eca51ca9d45bbb65d2fe937ed160abe08d37b482 | |
parent | 9239f5e06465e53b0a2b354cdfc168fe55d5bb22 (diff) | |
download | aur-91ee77112df7616cc2da5cae29565475eedc1e18.tar.gz |
switch to a maintained fork
-rw-r--r-- | .SRCINFO | 11 | ||||
-rw-r--r-- | PKGBUILD | 16 |
2 files changed, 13 insertions, 14 deletions
@@ -1,21 +1,20 @@ pkgbase = cutemarked-git pkgdesc = Qt Markdown Editor - pkgver = 0.11.3.r849 + pkgver = 20200625.r910 pkgrel = 1 - url = https://github.com/cloose/CuteMarkEd + url = https://github.com/Waqar144/CuteMarkEd-NG arch = i686 arch = x86_64 license = GPL2 makedepends = git makedepends = qt5-tools - depends = qt5-webkit + depends = qt5-webengine depends = hunspell - depends = discount>=2.1.7 - depends = desktop-file-utils + depends = discount depends = hicolor-icon-theme provides = cutemarked conflicts = cutemarked - source = git://github.com/cloose/CuteMarkEd.git + source = git+https://github.com/Waqar144/CuteMarkEd-NG.git md5sums = SKIP pkgname = cutemarked-git @@ -1,30 +1,30 @@ # Contributor: Aetf <aetf at unlimitedcodeworks dot xyz> # Maintainer: Stefan Husmann <stefan-husmann@t-online.de> -_gitname=CuteMarkEd +_gitname=CuteMarkEd-NG pkgname=cutemarked-git -pkgver=0.11.3.r849 +pkgver=20200625.r910 pkgrel=1 pkgdesc="Qt Markdown Editor" -url="https://github.com/cloose/CuteMarkEd" +url="https://github.com/Waqar144/${_gitname}" arch=('i686' 'x86_64') license=('GPL2') -depends=('qt5-webkit' 'hunspell' "discount>=2.1.7" 'desktop-file-utils' 'hicolor-icon-theme') +depends=('qt5-webengine' 'hunspell' 'discount' 'hicolor-icon-theme') makedepends=('git' 'qt5-tools') provides=('cutemarked') conflicts=('cutemarked') -source=("git://github.com/cloose/CuteMarkEd.git") +source=("git+$url.git") md5sums=('SKIP') pkgver() { cd $_gitname - _mainver=$(grep ProductVersion ${_gitname}.wxs | head -1 | cut -d= -f2 | tr -d \" | tr -d \? | tr \> .) - printf "%sr%s" $(echo $_mainver) $(git rev-list --count HEAD) + printf "%s.r%s" $(git log -1 --format="%cd" --date=short | tr -d '-') $(git rev-list --count HEAD) } prepare() { cd $_gitname - sed -i -e '/#include <QTableWidgetItem>/a #include <QAction>' app/optionsdialog.cpp + git submodule init + git submodule update } build() { |