mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2026-02-11 02:42:21 +01:00
70 lines
2.5 KiB
Plaintext
70 lines
2.5 KiB
Plaintext
# Contributor: Łukasz Jendrysik <scadu@yandex.com>
|
|
# Contributor: Carlo Landmeter <clandmeter@gmail.com>
|
|
# Contributor: Sören Tempel <soeren+alpine@soeren-tempel.net>
|
|
# Maintainer: Natanael Copa <ncopa@alpinelinux.org>
|
|
pkgname=syncthing
|
|
pkgver=0.14.5
|
|
pkgrel=0
|
|
pkgdesc="Open Source Continuous File Synchronization"
|
|
url="http://syncthing.net/"
|
|
arch="all"
|
|
license="MPLv2"
|
|
pkgusers="$pkgname"
|
|
pkggroups="$pkgname"
|
|
depends=""
|
|
depends_dev=""
|
|
makedepends="go"
|
|
install="$pkgname.pre-install"
|
|
subpackages="$pkgname-utils"
|
|
options="!strip"
|
|
source="$pkgname-$pkgver.tar.gz::https://github.com/$pkgname/$pkgname/archive/v$pkgver.tar.gz
|
|
$pkgname.confd
|
|
$pkgname.initd"
|
|
|
|
builddir="$srcdir/src/github.com/$pkgname"
|
|
|
|
prepare() {
|
|
default_prepare
|
|
mkdir -p "$builddir"
|
|
ln -s "$srcdir"/$pkgname-$pkgver "$builddir"/$pkgname || return 1
|
|
}
|
|
|
|
build() {
|
|
cd "$builddir"/$pkgname
|
|
export GOPATH="$srcdir"
|
|
# recent syncthing tarballs have all deps in vendor dir
|
|
# no need to use a go dep tool like glide/godep
|
|
go run build.go -no-upgrade -version=v$pkgver
|
|
}
|
|
|
|
package() {
|
|
install -d -o $pkgname -g $pkgname \
|
|
"$pkgdir"/var/lib/$pkgname || return 1
|
|
install -D -m755 $builddir/$pkgname/bin/$pkgname \
|
|
"$pkgdir"/usr/bin/$pkgname || return 1
|
|
install -D -m755 "$srcdir"/$pkgname.initd \
|
|
"$pkgdir"/etc/init.d/$pkgname || return 1
|
|
install -D -m644 "$srcdir"/$pkgname.confd \
|
|
"$pkgdir"/etc/conf.d/$pkgname || return 1
|
|
}
|
|
|
|
utils() {
|
|
pkgdesc="Syncthing utilities"
|
|
for i in $(ls $builddir/$pkgname/bin); do
|
|
if ! [ "$i" = "$pkgname" ]; then
|
|
install -Dm 755 $builddir/$pkgname/bin/$i \
|
|
$subpkgdir/usr/bin/$i || return 1
|
|
fi
|
|
done
|
|
}
|
|
|
|
md5sums="e9d43e1241f07916952f3ecc6cf6d02d syncthing-0.14.5.tar.gz
|
|
c4923d6df4d3e51274869c09ea46a3e1 syncthing.confd
|
|
760e26e5ea2f1dce8ce149a45f5e99bb syncthing.initd"
|
|
sha256sums="32979e333a77dcd4e2ba9cb9c74404f9fd06891032c84b1285bcb779c9e132b6 syncthing-0.14.5.tar.gz
|
|
da396f944d7b5b2e4f5a7a9a3a7b31529cf359ef7ebecec4c48383d0c8b6821e syncthing.confd
|
|
4d7c1de71cfc415d716471f32fdbb1693597f0209167e4c4ea302478481ab9b3 syncthing.initd"
|
|
sha512sums="c60e3205624e49de34c17a77cf3a8e7af49572a53faa97a6dca7e57a7009c068f70f986e4e3f60774514e3b74a09edff4e6843563456d4ff97b408843a9a06fb syncthing-0.14.5.tar.gz
|
|
b19cc3d802caa33f4d06852de590d2d984c12cf27d0540162cd7195da4f3f149c83c72e7a10f385b32b27fff6f39d33698e7402442a3f32a9da136c5d19059ae syncthing.confd
|
|
21fa7b0090e579ad0f02bb8cc9a78736eb99811613823bf12d477262da2281543d07b47ae0888e2e3876a687bf4cab3c89405447373a9c5ab2915989c5f9dce8 syncthing.initd"
|