summarylogtreecommitdiffstats
path: root/PKGBUILD
blob: 41496f731a339600b771b53e2fd5251d27cad6c9 (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=1.5.3
pkgrel=1
pkgdesc="A syncing cli tool that can handle more than two directories locally and remotely"
arch=('any')
url="https://codeberg.org/cyber-luna/lunas"
license=('GPL3')
depends=('libssh')
makedepends=('git' 'gcc' 'make')
source=("git+https://codeberg.org/cyber-luna/lunas")
sha256sums=('SKIP')

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

package(){
	cd "$srcdir/$pkgname"
	install -Dm755 $pkgname "$pkgdir/usr/bin/$pkgname"
	install -Dm644 man/$pkgname.1 "$pkgdir/usr/share/man/man1/$pkgname.1"
}