summaryrefslogtreecommitdiff
path: root/gitolite-sync/PKGBUILD
blob: 97d37b38515c256a8405c8d3432af059878b0f49 (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
# Maintainer: Erich Eckner <arch at eckner dot net>
pkgname=gitolite-sync
pkgver=0.3.2
pkgrel=1
pkgdesc='synchronize git repositories (designed for gitolite managed ones)'
arch=('any')
url="https://git.eckner.net/Erich/${pkgname}"
license=('GPL')
depends=('git')
makedepends=('help2man')
optdepends=('gitolite:  to manage the repositories')
backup=('etc/gitolite-sync.conf')
source=(
    "https://git.eckner.net/Erich/${pkgname}/snapshot/${pkgname}-${pkgver}.tar.xz"
)
sha512sums=('cf927f89cd4a0e2cba959f5d3c41a70bff68fcd19ade2a38adce7a8450b3de64a5be3bf7b1ad7ec95e6de7d586a0b758780bae3f9867e516a04738ce5ae635b3')

build() {

    cd ${pkgname}-${pkgver}
    make

}

package() {

    cd ${pkgname}-${pkgver}
    make DESTDIR=${pkgdir} install

}