-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathPKGBUILD
27 lines (22 loc) · 907 Bytes
/
PKGBUILD
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
# Contributor: Angelo "Encelo" Theodorou <[email protected]>
# Maintainer: Jesús Barbero Rodríguez <[email protected]>
pkgname=cloudsn
pkgver=0.10.2
pkgrel=1
pkgdesc="E-mail (pop3, gmail, imap), rss, and tweets notifier"
arch=('any')
url="http://chuchiperriman.github.com/cloud-services-notifications/"
license=('GPL')
depends=('python2' 'python-notify' 'python-simplejson' 'pyxdg' 'hicolor-icon-theme' 'dbus-python')
optdepends=('python2-feedparser: RSS support'
'python-gnomekeyring: Store passwords in gnome-keyring'
'gstreamer0.10-python: To play sounds'
)
install=cloudsn.install
source=($pkgname-$pkgver.tar.gz::https://github.com/chuchiperriman/cloud-services-notifications/tarball/$pkgver)
md5sums=('603f987e0c4e9096600b30f4bbbbbada')
build() {
cd $srcdir/chuchiperriman-cloud-services-notifications-*
python2 setup.py install --root=$pkgdir --prefix=/usr
}
# vim:set ts=2 sw=2 et: