blob: 1fb9e97174a3a27dcc06ee2bda2c4d77d8e51fb2 (
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
|
# $Id$
# Maintainer: Dieter Plaetinck <dieter@plaetinck.be>
pkgname=libui-sh
pkgver=2011.05.22
pkgrel=1
pkgdesc="a shell library providing useful UI functions"
arch=('any')
url="https://projects.parabolagnulinux.org/libui-sh.git"
license=('GPL3')
depends=('bash')
optdepends=('dialog: for ncurses support')
source=($url/snapshot/${pkgname}-${pkgver}.tar.bz2)
build() {
cd $srcdir/libui-sh-$pkgver/
make DESTDIR="$pkgdir/" install
}
# vim:set ts=2 sw=2 et:
md5sums=('44e422ca76ca99a7df99e2249ff3b4e5')
|