summarylogtreecommitdiffstats
path: root/PKGBUILD
blob: 03d7fb764fad025e4b32b799b7eda27a272c7ba1 (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
# Contributor: Gergely Imreh <imrehg@gmail.com>

pkgname=syncit
pkgdesc='Sync files, directories or the entire file-system with durability in mind'
pkgver=0.0.2
pkgrel=1
arch=('any')
url='https://github.com/agherzan/syncit'
license=('APACHE')
depends=()
makedepends=()
source=("${pkgname}-v${pkgver}.tar.gz::https://github.com/agherzan/${pkgname}/archive/v${pkgver}.tar.gz")
sha256sums=('5c8cbb3aca80812bdba7f171389a3d528ccdae0465a8379c9e84fb19ea5bb78e')

build() {
  cd "${srcdir}/${pkgname}-${pkgver}"
  make
}

package() {
  cd "${srcdir}/${pkgname}-${pkgver}"

  DEST="${pkgdir}/usr/bin/"
  make INSTALL_DEST="${DEST}" install
}