blob: f6ffc0cd3f007ab544c3b2d891d0748a4646d984 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
pkgname=todo-cli
pkgver=1.0.0
pkgrel=1
pkgdesc="The cli tool for the Todo Server"
arch=('any')
url="https://github.com/nldk/todoCLI"
license=('MIT') # or whatever you use
depends=('jre-openjdk')
source=("https://github.com/nldk/todoCLI/releases/download/todo-cli/todo-cli-1.0.0.jar"
"https://github.com/nldk/todoCLI/releases/download/todo-cli/todo")
sha256sums=('SKIP' 'SKIP')
package() {
install -Dm644 todo-cli-1.0.0.jar "$pkgdir/usr/share/todo-cli/todo-cli-1.0.0.jar"
install -Dm755 todo "$pkgdir/usr/bin/todo"
}
|