32 lines
1.1 KiB
Bash
32 lines
1.1 KiB
Bash
# Maintainer: Bob Mottram (4096 bits) <bob@robotics.uk.to>
|
|
pkgname=pybitmessage
|
|
pkgver=0.3.5
|
|
pkgrel=1
|
|
pkgdesc="Bitmessage is a P2P communications protocol used to send encrypted messages to another person or to many subscribers. It is decentralized and trustless, meaning that you need-not inherently trust any entities like root certificate authorities. It uses strong authentication which means that the sender of a message cannot be spoofed, and it aims to hide "non-content" data, like the sender and receiver of messages, from passive eavesdroppers like those running warrantless wiretapping programs."
|
|
arch=('i686' 'x86_64')
|
|
url="https://github.com/Bitmessage/PyBitmessage"
|
|
license=('MIT')
|
|
groups=()
|
|
depends=('python2' 'qt4' 'python2-pyqt4' 'sqlite' 'openssl' 'gst123')
|
|
makedepends=()
|
|
optdepends=('python2-gevent')
|
|
provides=()
|
|
conflicts=()
|
|
replaces=()
|
|
backup=()
|
|
options=()
|
|
install=
|
|
changelog=
|
|
source=($pkgname-$pkgver.tar.gz)
|
|
noextract=()
|
|
md5sums=()
|
|
build() {
|
|
cd "$srcdir/$pkgname-$pkgver"
|
|
./configure --prefix=/usr
|
|
make
|
|
}
|
|
package() {
|
|
cd "$srcdir/$pkgname-$pkgver"
|
|
make DESTDIR="$pkgdir/" PREFIX="/usr" install
|
|
}
|