aboutsummarylogtreecommitdiffstats
path: root/PKGBUILD
blob: 7cf1e33b99032d0ad9845ad019fa1244d787bab9 (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
# Maintainer: Manoel Brunnen <manoel.brunnen@gmail.com>

pkgname=fetcher
pkgver=1.0
pkgrel=1
pkgdesc="Automatic adding, commiting, pushing or pulling of git repos.
Easily adjustable in a config file à la \"<repopath> <command> <remote> <refspec>\".
Also added the special command addcommitpush, which does all three at once.
"
arch=('any')
url="https://github.com/mbrunnen/fetcher"
license=('MIT')
groups=()
depends=('git')
install="$pkgname.install"
source=("fetcher.sh"
        "fetcher.service")
noextract=()
md5sums=('5df683b5b96f5e83331ab071b0979613'
         'ac026457052512cfdb9ae12e100ea696')

package() {
    install -Dm644 $srcdir/fetcher.service $pkgdir/usr/lib/systemd/system/fetcher@$USER.service
    install -Dm755 $srcdir/fetcher.sh $pkgdir/usr/bin/fetcher
}

# vim:set ft=sh: