1
0
mirror of https://github.com/moparisthebest/arch-ppa synced 2024-08-13 15:43:47 -04:00
arch-ppa/src/gajim-plugin-omemo/PKGBUILD

29 lines
1006 B
Bash
Raw Normal View History

2016-12-05 13:45:25 -05:00
# Maintainer: Tommaso Sardelli <lacapannadelloziotom AT gmail DOT com>
pkgname=gajim-plugin-omemo
_pkgname=omemo
2017-11-25 21:32:19 -05:00
pkgver=1.2.8
2017-03-13 12:19:25 -04:00
pkgrel=1
2016-12-05 13:45:25 -05:00
pkgdesc="Gajim plugin for OMEMO Multi-End Message and Object Encryption."
arch=(any)
url="https://dev.gajim.org/gajim/gajim-plugins/wikis/OmemoGajimPlugin"
license=('GPL')
2017-07-01 12:45:39 -04:00
depends=("gajim" "python2-qrcode" "python2-setuptools" "python2-cryptography" "python2-axolotl" "python2-future")
2016-12-05 13:45:25 -05:00
provides=('gajim-plugin-omemo')
conflicts=('gajim-plugin-omemo-git')
2017-11-25 21:32:19 -05:00
source=("https://dev.gajim.org/gajim/gajim-plugins/uploads/0bbc71f9c33d7a450c6bb7704006e0bc/omemo_1.2.8.zip")
sha512sums=('bdc50faac655306cc5b791edd238518d52f31bda6739f1d0411757835491ee6bf7e87dfffff9b1a57b74b4ed3b0309c97d23cd1615f7f45ef530d3655636cfa4')
2016-12-05 13:45:25 -05:00
package() {
cd ${srcdir}/${_pkgname}
# Remove unnecessary files
rm -r CHANGELOG COPYING setup.cfg
# Install the plugin
install -d ${pkgdir}/usr/share/gajim/plugins/omemo
cp -r * ${pkgdir}/usr/share/gajim/plugins/omemo/
}
# vim:set ts=2 sw=2 et: