Skip to content

Instantly share code, notes, and snippets.

@runiq
Created July 9, 2014 16:39
Show Gist options
  • Save runiq/2c7291734e959f091382 to your computer and use it in GitHub Desktop.
Save runiq/2c7291734e959f091382 to your computer and use it in GitHub Desktop.
python2-vdirsyncer 0.2.1 PKGBUILD
# Maintainer: Hugo Osvaldo Barrera <[email protected]>
pkgname=python2-vdirsyncer
_pkgname=vdirsyncer
pkgver=0.2.1
pkgrel=1
pkgdesc="Synchronize CalDAV and CardDAV"
arch=('any')
url="https://github.com/untitaker/vdirsyncer"
license=('MIT')
depends=('python2-click'
'python2-setuptools'
'python2-lxml'
'python2-icalendar'
'python2-requests-toolbelt')
source=("https://github.com/untitaker/${_pkgname}/archive/${pkgver}.zip")
sha256sums=('c8614ef2708d3bc16c3107ae66187b68fbb9c7b75c71d853a5d258ed97140694')
build() {
cd "${_pkgname}-$pkgver"
python2 setup.py build
}
package() {
cd "${_pkgname}-$pkgver"
python2 setup.py install --root="$pkgdir"
}
# vim:set ts=2 sw=2 et:
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment