diff options
author | Omar Vega Ramos <ovruni@gnu.org.pe> | 2015-11-13 10:04:13 -0500 |
---|---|---|
committer | Omar Vega Ramos <ovruni@gnu.org.pe> | 2015-11-13 10:04:13 -0500 |
commit | 3119eebb111ce6f03e422b8fdd5524f3b5688ce5 (patch) | |
tree | ece6a242353e584565bc1a1703facf7f2167b673 /pcr | |
parent | a3004e4b85c0b79c4c147c9bd99e876ed87d70ce (diff) | |
download | abslibre-3119eebb111ce6f03e422b8fdd5524f3b5688ce5.tar.gz abslibre-3119eebb111ce6f03e422b8fdd5524f3b5688ce5.tar.bz2 abslibre-3119eebb111ce6f03e422b8fdd5524f3b5688ce5.zip |
utox-git-0.3.2.r155.g42a8193-1: updating version
Diffstat (limited to 'pcr')
-rw-r--r-- | pcr/utox-git/PKGBUILD | 22 |
1 files changed, 11 insertions, 11 deletions
diff --git a/pcr/utox-git/PKGBUILD b/pcr/utox-git/PKGBUILD index a03e9671c..4e204c3f5 100644 --- a/pcr/utox-git/PKGBUILD +++ b/pcr/utox-git/PKGBUILD @@ -5,11 +5,11 @@ _pkgname=utox pkgname=utox-git -pkgver=0.3.2.r41.gd16f539 -pkgrel=2 +pkgver=0.3.2.r155.g42a8193 +pkgrel=1 pkgdesc='Lightweight Tox client' arch=('i686' 'x86_64' 'armv7h') -url='https://github.com/notsecure/uTox' +url='https://github.com/GrayHatter/uTox' license=('GPL3') depends=('desktop-file-utils' 'fontconfig' @@ -23,23 +23,23 @@ depends=('desktop-file-utils' 'v4l-utils') makedepends=('git') optdepends=('gtk2: GTK file picker') -provides=("${_pkgname}") -conflicts=("${_pkgname}") -source=("${pkgname}::git+https://github.com/notsecure/uTox") +provides=("$_pkgname") +conflicts=("$_pkgname") +source=("$pkgname::git+https://github.com/GrayHatter/uTox") md5sums=('SKIP') -install="${pkgname}.install" +install="$pkgname.install" pkgver() { - cd "${srcdir}/${pkgname}" + cd "$pkgname" git describe --long --tags | sed 's/^v//;s/\([^-]*-g\)/r\1/;s/-/./g' } build() { - cd "${srcdir}/${pkgname}" + cd "$pkgname" make } package() { - cd "${srcdir}/${pkgname}" - make PREFIX=/usr DESTDIR="${pkgdir}" install + cd "$pkgname" + make PREFIX=/usr DESTDIR="$pkgdir" install } |