blob: 7e6fc929d49f35fdf9aa591d5454fc39424363e4 (
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: William Kozma <captain.john.s.tuttle@gmail.com>
pkgname=whattodo
pkgver=0.0.1
pkgrel=1
pkgdesc="Another todo command line Utility. (But this one is made in Java)"
arch=(x86_64)
url="https://github.com/will-t-f/whattodo.git"
license=('MIT')
groups=()
depends=(jdk-openjdk)
makedepends=(git make)
replaces=()
backup=()
options=()
install=
changelog=
source=("git+$url")
noextract=()
md5sums=('SKIP')
validpgpkeys=()
build() {
cd "$pkgname"
make
}
package() {
cd "$pkgname"
make DESTDIR="$pkgdir/" install
}
|