37 lines
1.5 KiB
Bash
37 lines
1.5 KiB
Bash
# 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
|
|
pkgver=0.17.3
|
|
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=('MPL-2.0')
|
|
depends=('openssl' 'python-fxa' 'python-tokenlib')
|
|
makedepends=('rust' 'cmake' 'pkgconf' 'mariadb-libs')
|
|
optdepends=('mysql: for use with a local database server')
|
|
options=('!lto')
|
|
install="${pkgname}.install"
|
|
source=("https://github.com/mozilla-services/${_pkgname}/archive/${pkgver}/${_pkgname}-${pkgver}.tar.gz"
|
|
"${pkgname}.service")
|
|
sha512sums=('c75abd1b932ae8dfd7dc0c509af6b11c09dad2af83d1f8bcff33959e7e4581acc9a94451f6851c44a13dd93d788b403d0bc6c2c190aa6a72fe5eafee92315033'
|
|
'4c5fbb99160613ba3fb0fedce97f04f63b92699fe79c6edd899d4ec5f297c5a98c0c211df3eb9a6579c12c57f4c63513747ed8944a60fc76e32f1e0c0f5e3a95')
|
|
backup=("etc/${pkgname}.toml")
|
|
|
|
build() {
|
|
cd "${_pkgname}-${pkgver}"
|
|
cargo build --release
|
|
}
|
|
|
|
package() {
|
|
cd "${_pkgname}-${pkgver}"
|
|
|
|
# Installing manually
|
|
install -Dm 755 target/release/syncserver "${pkgdir}"/usr/bin/"${pkgname}"
|
|
install -Dm 644 config/local.example.toml "${pkgdir}"/etc/"${pkgname}".toml
|
|
install -Dm 644 "${srcdir}/${pkgname}".service "${pkgdir}"/usr/lib/systemd/system/"${pkgname}".service
|
|
}
|