2022-09-23 22:36:18 +02:00
|
|
|
# Maintainer: Manuel Hüsers <aur@huesers.de>
|
|
|
|
# Contributor: jewelux <jewelux.aur@prejo.de>
|
|
|
|
|
|
|
|
# Based off the firefox-syncstorage-git PKGBUILD from jewelux
|
|
|
|
|
|
|
|
pkgname=firefox-syncstorage
|
|
|
|
_pkgname=syncstorage-rs
|
2024-06-13 21:59:48 +02:00
|
|
|
pkgver=0.16.0
|
2022-09-23 22:36:18 +02:00
|
|
|
pkgrel=1
|
|
|
|
pkgdesc='Sync storage server with built-in token server for running a self-hosted firefox sync server'
|
|
|
|
arch=('i686' 'x86_64' 'arm' 'armv6h' 'armv7h' 'aarch64')
|
|
|
|
url="https://github.com/mozilla-services/${_pkgname}"
|
|
|
|
license=('MPL2')
|
|
|
|
depends=('openssl' 'python-fxa' 'python-tokenlib')
|
|
|
|
makedepends=('rust' 'cmake' 'pkgconf' 'mariadb-libs')
|
|
|
|
optdepends=('mysql: for use with a local database server')
|
2023-10-04 23:45:15 +02:00
|
|
|
options=('!lto')
|
2022-09-23 22:36:18 +02:00
|
|
|
install="${pkgname}.install"
|
2022-11-23 17:58:12 +01:00
|
|
|
source=("https://github.com/mozilla-services/${_pkgname}/archive/${pkgver}/${_pkgname}-${pkgver}.tar.gz"
|
2022-09-23 22:36:18 +02:00
|
|
|
"${pkgname}.service")
|
2024-06-13 21:59:48 +02:00
|
|
|
sha512sums=('c61ba804783d407db4e5b4388eecbc6041c7a041e6f3e3b9e776c4aefec863cacfe82863107423920a35ec19337906e6eeae254f90d070eb5ad7a94bc8b107ba'
|
2023-10-04 23:45:15 +02:00
|
|
|
'4c5fbb99160613ba3fb0fedce97f04f63b92699fe79c6edd899d4ec5f297c5a98c0c211df3eb9a6579c12c57f4c63513747ed8944a60fc76e32f1e0c0f5e3a95')
|
2022-09-23 22:36:18 +02:00
|
|
|
backup=("etc/${pkgname}.toml")
|
|
|
|
|
|
|
|
build() {
|
|
|
|
cd "${_pkgname}-${pkgver}"
|
2023-03-07 21:57:07 +01:00
|
|
|
cargo build --release
|
2022-09-23 22:36:18 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
package() {
|
|
|
|
cd "${_pkgname}-${pkgver}"
|
|
|
|
|
|
|
|
# Installing manually
|
2022-11-15 17:25:15 +01:00
|
|
|
install -Dm 755 target/release/syncserver "${pkgdir}"/usr/bin/"${pkgname}"
|
2022-09-23 22:36:18 +02:00
|
|
|
install -Dm 644 config/local.example.toml "${pkgdir}"/etc/"${pkgname}".toml
|
|
|
|
install -Dm 644 "${srcdir}/${pkgname}".service "${pkgdir}"/usr/lib/systemd/system/"${pkgname}".service
|
|
|
|
}
|