diff options
author | Elio E. Duarte | 2015-12-08 21:25:42 -0200 |
---|---|---|
committer | Elio E. Duarte | 2015-12-08 21:25:42 -0200 |
commit | 635ed8fbd2fd59a83ebf5397b62e91fa1ad951b0 (patch) | |
tree | 5dba744fedf0e9b9c44c9ad3db573a552710f035 /PKGBUILD | |
download | aur-635ed8fbd2fd59a83ebf5397b62e91fa1ad951b0.tar.gz |
Initial version
Diffstat (limited to 'PKGBUILD')
-rw-r--r-- | PKGBUILD | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/PKGBUILD b/PKGBUILD new file mode 100644 index 00000000000..8476da5adb4 --- /dev/null +++ b/PKGBUILD @@ -0,0 +1,26 @@ +# Maintainer: Elio Esteves Duarte <elio.esteves.duarte@gmail.com> +pkgname=tomate-alarm-plugin +pkgver=0.3.0 +pkgrel=1 +pkgdesc="Tomate plugin that shows screen notifications" +arch=('any') +url="https://github.com/eliostvs/tomate-notify-plugin" +license=('GPL') +depends=('gtk3' + 'python' + 'gstreamer' + 'gst-plugins-base' + 'gst-plugins-good' + 'tomate-gtk') +makedepends=('python-setuptools') +options=(!emptydirs) +source=("https://github.com/eliostvs/$pkgname/archive/$pkgver.tar.gz") +md5sums=('19026e8ad56ef54b5cacd66c46747e14') + +package() { + cd "$srcdir/$pkgname-$pkgver" + python setup.py install --root="$pkgdir/" --optimize=1 + install -D -m644 COPYING "${pkgdir}/usr/share/licenses/${pkgbase}/LICENSE" +} + +# vim:set ts=2 sw=2 et:
\ No newline at end of file |