PyBitmessage/archpackage/PKGBUILD

32 lines
1.2 KiB
Bash
Raw Normal View History

2013-07-12 09:36:28 +00:00
# Maintainer: Bob Mottram (4096 bits) <bob@robotics.uk.to>
pkgname=pybitmessage
2013-09-23 03:29:30 +00:00
pkgver=0.4.0
2013-07-12 09:36:28 +00:00
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=('any')
2013-07-12 09:36:28 +00:00
url="https://github.com/Bitmessage/PyBitmessage"
license=('MIT')
groups=()
2013-09-28 14:26:10 +00:00
depends=('python2' 'qt4' 'python2-pyqt4' 'sqlite' 'openssl' 'mpg123')
2013-07-12 09:36:28 +00:00
makedepends=()
optdepends=('python2-gevent: Python network library that uses greenlet and libevent for easy and scalable concurrency')
2013-07-12 09:36:28 +00:00
provides=()
conflicts=()
replaces=()
backup=()
options=()
install=
changelog=
source=($pkgname-$pkgver.tar.gz)
noextract=()
2013-09-28 14:26:10 +00:00
md5sums=(0ee9bcb11dc606788fde94c7857e8720)
2013-07-12 09:36:28 +00:00
build() {
cd "$srcdir/$pkgname-$pkgver"
./configure --prefix=/usr
make
}
package() {
cd "$srcdir/$pkgname-$pkgver"
2013-07-23 15:04:44 +00:00
make DESTDIR="$pkgdir/" PREFIX="/usr" install
2013-07-12 09:36:28 +00:00
}