diff options
-rw-r--r-- | pcr/qtox-git/PKGBUILD | 28 |
1 files changed, 14 insertions, 14 deletions
diff --git a/pcr/qtox-git/PKGBUILD b/pcr/qtox-git/PKGBUILD index 7ebe8e77a..9df6d8221 100644 --- a/pcr/qtox-git/PKGBUILD +++ b/pcr/qtox-git/PKGBUILD @@ -1,25 +1,25 @@ # Maintainer (Arch): HÃ¥vard Pettersson <mail@haavard.me> # Contributor (Arch): Kevin MacMartin <prurigro at gmail dot com> +# Maintainer: Omar Vega Ramos <ovruni@gnu.org.pe> _pkgname=qtox pkgname=qtox-git -pkgver=r3871.db52ef6 +pkgver=1.2.r96.g698144c pkgrel=1 pkgdesc='Powerful Tox client written in C++/Qt that follows the Tox design guidelines.' -arch=('i686' 'x86_64' 'arm' 'armv6h' 'armv7h') +arch=('i686' 'x86_64') url='https://github.com/tux3/qTox' license=('GPL3') -depends=( - 'desktop-file-utils' - 'libfilteraudio-git' - 'libxkbcommon-x11' - 'libxss' - 'opencv' - 'openal' - 'qt5-svg' - 'qrencode' - 'toxcore' -) +depends=('desktop-file-utils' + 'libfilteraudio-git' + 'libxkbcommon-x11' + 'libxss' + 'openal' + 'opencv' + 'qrencode' + 'qt5-svg' + 'sqlcipher' + 'toxcore') makedepends=('git' 'qt5-tools') provides=("$_pkgname") conflicts=("$_pkgname") @@ -29,7 +29,7 @@ sha512sums=('SKIP') pkgver() { cd $_pkgname - printf "r%s.%s" "$(git rev-list --count HEAD)" "$(git rev-parse --short HEAD)" + git describe --long --tags | sed 's/^v//;s/\([^-]*-g\)/r\1/;s/-/./g' } build() { |