Date: Monday, December 8, 2014 @ 14:16:40 Author: flexiondotorg Revision: 123653
Update PKGBUILD Modified: syncthing-gtk/repos/community-any/PKGBUILD ----------+ PKGBUILD | 20 +++++++++++--------- 1 file changed, 11 insertions(+), 9 deletions(-) Modified: PKGBUILD =================================================================== --- PKGBUILD 2014-12-08 13:15:43 UTC (rev 123652) +++ PKGBUILD 2014-12-08 13:16:40 UTC (rev 123653) @@ -1,23 +1,25 @@ -# Maintainer: kozec <kozec at kozec dot com> +# Maintainer : Martin Wimpress <[email protected]> +# Contributor: kozec <kozec at kozec dot com> + pkgname=syncthing-gtk pkgver=0.5.2 -pkgrel=2 -pkgdesc="GTK3 & python based GUI and notification area icon for Syncthing" +pkgrel=3 +pkgdesc="GTK3 & Python based GUI and notification area icon for Syncthing" arch=('any') -url="https://github.com/kozec/syncthing-gui" +url="https://github.com/syncthing/syncthing-gtk" license=('GPL2') makedepends=('python2-setuptools') depends=('gtk3' 'libnotify' 'python2-dateutil' 'python2-gobject' 'python2-pyinotify' 'syncthing>=0.10.9') -source=("https://github.com/kozec/syncthing-gui/archive/v${pkgver}.tar.gz") +source=("https://github.com/syncthing/${pkgname}/archive/v${pkgver}.tar.gz") md5sums=('20e5750b775acedaf51ab130e4e47644') build() { - cd "${srcdir}/syncthing-gtk-${pkgver}" - python2 setup.py build + cd "${srcdir}/${pkgname}-${pkgver}" + python2 setup.py build } package() { - cd "${srcdir}/syncthing-gtk-${pkgver}" - python2 setup.py install --root=${pkgdir} --optimize=1 + cd "${srcdir}/${pkgname}-${pkgver}" + python2 setup.py install --root=${pkgdir} --optimize=1 }
