mirror of
https://github.com/RetroShare/RetroShare.git
synced 2024-10-01 02:35:48 -04:00
46 lines
1.5 KiB
Bash
46 lines
1.5 KiB
Bash
# Maintainer: Gioacchino Mazzurco <gio@eigenlab.org>
|
|
# Contributor: AsamK
|
|
# Contributor: sehraf
|
|
# Contributor: stqn
|
|
# Contributor: JHeaton <jheaton at archlinux dot us>
|
|
# Contributor: Tristero <tristero at online dot de>
|
|
# Contributor: funkyou
|
|
|
|
pkgname=retroshare-service-git
|
|
pkgver=git
|
|
pkgrel=0
|
|
pkgdesc="Serverless encrypted instant messenger with filesharing, chatgroups, e-mail. System service version."
|
|
arch=('i686' 'x86_64' 'armv6h' 'armv7h')
|
|
url="https://retroshare.net/"
|
|
license=('AGPL' 'GPL' 'LGPL')
|
|
depends=('bzip2' 'libupnp' 'libzip' 'openssl' 'rapidjson' 'sqlcipher' 'xapian-core')
|
|
makedepends=('cmake' 'doxygen' 'git' 'pkgconf' 'qt5-tools')
|
|
provides=('retroshare-service')
|
|
conflicts=('retroshare-service')
|
|
|
|
source=(RetroShare-${pkgver}.tar.gz)
|
|
|
|
md5sums=('3c66108223b427d617b962aff0755378')
|
|
|
|
prepare() {
|
|
cd "${srcdir}/RetroShare-${pkgver}"
|
|
}
|
|
|
|
build() {
|
|
cd "${srcdir}/RetroShare-${pkgver}"
|
|
qmake-qt5 PREFIX=/usr DATA_DIR=/usr/share/retroshare CONFIG-=debug \
|
|
CONFIG+=ipv6 CONFIG+=no_retroshare_android_service \
|
|
CONFIG+=no_retroshare_android_notify_service \
|
|
CONFIG+=no_retroshare_plugins CONFIG+=no_retroshare_nogui \
|
|
CONFIG+=no_retroshare_gui CONFIG+=no_tests CONFIG+=no_libresapi \
|
|
CONFIG+=no_libresapihttpserver CONFIG+=no_libresapilocalserver \
|
|
CONFIG+=retroshare_service CONFIG+=rs_jsonapi CONFIG+=rs_deep_search \
|
|
CONFIG+=release
|
|
make -j$(nproc) || make -j$(nproc) || make
|
|
}
|
|
|
|
package() {
|
|
cd "${srcdir}/RetroShare-${pkgver}"
|
|
make INSTALL_ROOT="${pkgdir}" install
|
|
}
|