summarylogtreecommitdiffstats
path: root/PKGBUILD
blob: 3a403216e03d9604ad48370865d435a9cc383f7f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
# Maintainer: Tobias Frilling <tobias@frilling-online.de>
pkgname=hnb
pkgver=1.9.17
pkgrel=5
pkgdesc="Ncurses based hierarchical notebook to structure many kinds of data in one place."
arch=('i686' 'x86_64')
url="http://hnb.sourceforge.net"
license=("GPL3")
depends=('ncurses')
source=("http://downloads.sourceforge.net/$pkgname/$pkgname-$pkgver.tar.gz")
md5sums=('c73b5f63d8ffe1976c915c1f8265951d')

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

package() {
  cd "$srcdir/$pkgname-$pkgver"
  install -D src/hnb $pkgdir/usr/bin/hnb
  install -D -m444 doc/hnb.1 $pkgdir/usr/share/man/man1/hnb.1
}