blob: b329851ca353a8cf7b26def14771d99aa12ab31d (
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
|
# Maintainer: cyber-luna <cyber-luna@tuta.io>
pkgname='lunas'
pkgver=2.1.3
pkgrel=1
pkgdesc="A syncing cli tool that can handle more than two directories locally and remotely"
arch=('any')
url="https://github.com/nodeluna/lunas"
license=('GPL3')
depends=('libssh')
makedepends=('git' 'gcc' 'make')
source=("git+https://github.com/nodeluna/lunas")
sha256sums=('SKIP')
build(){
cd "$srcdir/$pkgname"
make -j4
}
package(){
cd "$srcdir/$pkgname"
install -Dm755 $pkgname "$pkgdir/usr/bin/$pkgname"
install -Dm644 man/$pkgname.1 "$pkgdir/usr/share/man/man1/$pkgname.1"
}
|