From 6e0a7bcdd0036963bba7cc35992c00daacdbb2fb Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Manuel=20H=C3=BCsers?= Date: Mon, 1 Jun 2020 07:09:06 +0200 Subject: [PATCH] Add support for ARM and add additional database backends (commented) --- .SRCINFO | 6 +++++- PKGBUILD | 12 +++++++++--- 2 files changed, 14 insertions(+), 4 deletions(-) diff --git a/.SRCINFO b/.SRCINFO index 71519f6..e27393d 100644 --- a/.SRCINFO +++ b/.SRCINFO @@ -1,11 +1,15 @@ pkgbase = mozilla-firefox-sync-server-git pkgdesc = Mozilla Sync Server for built-in Firefox Sync - 1.5+ version for Firefox 29+ pkgver = 1.8.0.r67.g516807e - pkgrel = 2 + pkgrel = 3 url = http://docs.services.mozilla.com/howtos/run-sync-1.5.html install = mozilla-firefox-sync-server-git.install arch = i686 arch = x86_64 + arch = arm + arch = armv6h + arch = armv7h + arch = aarch64 license = MPL2 makedepends = git depends = python2 diff --git a/PKGBUILD b/PKGBUILD index 3b7f0e1..af08169 100644 --- a/PKGBUILD +++ b/PKGBUILD @@ -3,9 +3,9 @@ pkgname=mozilla-firefox-sync-server-git pkgver=1.8.0.r67.g516807e -pkgrel=2 +pkgrel=3 pkgdesc="Mozilla Sync Server for built-in Firefox Sync - 1.5+ version for Firefox 29+" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'arm' 'armv6h' 'armv7h' 'aarch64') url='http://docs.services.mozilla.com/howtos/run-sync-1.5.html' license=('MPL2') depends=('python2' 'python2-virtualenv') @@ -43,7 +43,13 @@ build() { cd ${pkgname} make build - # PostgreSQL support (please uncomment) + # SQLite support + #local/bin/pip install pysqlite2 + + # MySQL support (should already be included) + #local/bin/pip install PyMySQL + + # PostgreSQL support #local/bin/pip install psycopg2 # There is no install target in the Makefile, so let's do some cleaning