32 lines
1.0 KiB
Bash
32 lines
1.0 KiB
Bash
|
# Maintainer: Bob Mottram (4096 bits) <bob@robotics.uk.to>
|
||
|
pkgname=pybitmessage
|
||
|
pkgver=0.3.4
|
||
|
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=()
|
||
|
makedepends=()
|
||
|
optdepends=()
|
||
|
provides=()
|
||
|
conflicts=()
|
||
|
replaces=()
|
||
|
backup=()
|
||
|
options=()
|
||
|
install=
|
||
|
changelog=
|
||
|
source=($pkgname-$pkgver.tar.gz)
|
||
|
noextract=()
|
||
|
md5sums=(56a8a225463e96b435b2a5b438006983)
|
||
|
build() {
|
||
|
cd "$srcdir/$pkgname-$pkgver"
|
||
|
./configure --prefix=/usr
|
||
|
make
|
||
|
}
|
||
|
package() {
|
||
|
cd "$srcdir/$pkgname-$pkgver"
|
||
|
make DESTDIR="$pkgdir/" install
|
||
|
}
|