Date: Monday, December 8, 2014 @ 14:15:43 Author: flexiondotorg Revision: 123652
upgpkg: syncthing-gtk 0.5.2-3 - Update URLs Added: syncthing-gtk/trunk/PKGBUILD ----------+ PKGBUILD | 25 +++++++++++++++++++++++++ 1 file changed, 25 insertions(+) Added: PKGBUILD =================================================================== --- PKGBUILD (rev 0) +++ PKGBUILD 2014-12-08 13:15:43 UTC (rev 123652) @@ -0,0 +1,25 @@ +# Maintainer : Martin Wimpress <[email protected]> +# Contributor: kozec <kozec at kozec dot com> + +pkgname=syncthing-gtk +pkgver=0.5.2 +pkgrel=3 +pkgdesc="GTK3 & Python based GUI and notification area icon for Syncthing" +arch=('any') +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/syncthing/${pkgname}/archive/v${pkgver}.tar.gz") +md5sums=('20e5750b775acedaf51ab130e4e47644') + +build() { + cd "${srcdir}/${pkgname}-${pkgver}" + python2 setup.py build +} + +package() { + cd "${srcdir}/${pkgname}-${pkgver}" + python2 setup.py install --root=${pkgdir} --optimize=1 +}
