diff options
author | Omar Vega Ramos <ovruni@gnu.org.pe> | 2015-10-12 00:24:58 -0500 |
---|---|---|
committer | Omar Vega Ramos <ovruni@gnu.org.pe> | 2015-10-12 00:24:58 -0500 |
commit | b5095766c7e096a87a0a488c02dd7e880f9bd815 (patch) | |
tree | 2e5a4a6b7a6dac35eac4923512948cfa59391263 | |
parent | e7b9318a63262439927c460d6129174626ab407a (diff) | |
download | abslibre-b5095766c7e096a87a0a488c02dd7e880f9bd815.tar.gz abslibre-b5095766c7e096a87a0a488c02dd7e880f9bd815.tar.bz2 abslibre-b5095766c7e096a87a0a488c02dd7e880f9bd815.zip |
toxic-git-0.6.1.r3.ga920f3e-1: updating version
-rw-r--r-- | pcr/toxic-git/PKGBUILD | 22 | ||||
-rw-r--r-- | pcr/toxic-git/toxic-git.install | 7 |
2 files changed, 13 insertions, 16 deletions
diff --git a/pcr/toxic-git/PKGBUILD b/pcr/toxic-git/PKGBUILD index c3ce125ce..80ecb0e95 100644 --- a/pcr/toxic-git/PKGBUILD +++ b/pcr/toxic-git/PKGBUILD @@ -1,24 +1,22 @@ -# Maintainer: freaj <freaj@riseup.net> # Maintainer (Arch): HÃ¥vard Pettersson <mail@haavard.me> -# Contributor (Arch): Florian Hahn <flo@fhahn.com> +# Contributor (Arch): Florian Hahn <flo at fhahn dot com> +# Maintainer: Omar Vega Ramos <ovruni@gnu.org.pe> _pkgname=toxic pkgname=toxic-git pkgdesc='CLI Frontend in ncurses for Tox' license=('GPL3') -pkgver=r1527.409e4dd +pkgver=0.6.1.r3.ga920f3e pkgrel=1 -depends=( - 'desktop-file-utils' - 'freealut' - 'libnotify' - 'tox-git' -) +depends=('desktop-file-utils' + 'freealut' + 'libnotify' + 'toxcore') makedepends=('git') conflicts=($_pkgname) provides=($_pkgname) -arch=('i686' 'x86_64' 'arm' 'armv6h' 'armv7h') -url=('http://tox.im') +arch=('i686' 'x86_64' 'armv7h') +url=('http://tox.chat') source=("${pkgname}::git+https://github.com/Tox/toxic.git") sha512sums=('SKIP') @@ -26,7 +24,7 @@ install="${pkgname}.install" 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() { diff --git a/pcr/toxic-git/toxic-git.install b/pcr/toxic-git/toxic-git.install index 87dc4754e..2eaa60550 100644 --- a/pcr/toxic-git/toxic-git.install +++ b/pcr/toxic-git/toxic-git.install @@ -1,12 +1,11 @@ post_install() { - update-desktop-database -q + update-desktop-database -q } post_upgrade() { - post_install $1 + post_install $1 } post_remove() { - post_install $1 + post_install $1 } - |