blob: 39b50f6a9dd93e1d38a781c81d7b4be903620a2b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
|
# Maintainer: Archimede Pitagorico <archimede.pitagorico@mail.com>
pkgname=megasync-headless
pkgver=v3.11.1.0.g37a619794
pkgrel=1
pkgdesc="Sync with MEGA. Daemon, fuse and cli client. Original sdk (git)."
arch=('x86_64' 'aarch64')
url='https://mega.co.nz/#sync'
license=('custom:MEGA')
source=('git+https://github.com/meganz/sdk.git#tag=v3.11.1'
'megasyncd@.service'
'megasync.conf'
)
install=$pkgname.install
backup=('usr/lib/systemd/system/megasyncd@.service'
'etc/conf.d/megasync.conf'
)
conflicts=('megasync'
'megasync-git'
'megatools'
)
depends=('c-ares'
'curl'
'crypto++'
'zlib'
'openssl'
'libsodium'
)
makedepends=('git'
)
sha1sums=('SKIP'
'SKIP'
'SKIP'
)
options=('!buildflags'
)
pkgver() {
cd sdk
echo "$(git describe --long --tags | tr - . | tr _ .)"
}
prepare() {
cd sdk
./autogen.sh
./configure \
--without-freeimage \
--without-sqlite
}
build() {
cd sdk
make examples/megacli CPPFLAGS=-Wno-deprecated-declarations
make examples/megasimplesync CPPFLAGS=-Wno-deprecated-declarations
}
package() {
install -Dm644 megasyncd@.service "${pkgdir}/usr/lib/systemd/system/megasyncd@.service"
install -Dm600 megasync.conf "${pkgdir}/etc/conf.d/megasync.conf"
cd sdk
make CPPFLAGS=-Wno-deprecated-declarations DESTDIR=${pkgdir} install
# we do not need the include files
rm -rf "${pkgdir}/usr/local/include"
install -Dm644 LICENSE "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
mkdir -p "${pkgdir}/srv/mega"
mkdir -p "${pkgdir}/var/mega"
chmod 0700 "${pkgdir}/var/mega"
# pacman does not like /lib and /bin, because they are symlink, so move them to /usr/lib and /usr/bin
cp -R ${pkgdir}/lib/* ${pkgdir}/usr/lib
rm -rf ${pkgdir}/lib
mv ${pkgdir}/bin ${pkgdir}/usr
}
|