blob: 691f9fe1804b5cec724dd0c875d36376e00c3f9f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
# Description: Outil permettant d'afficher des boîtes de dialogue
# URL: http://hightek.org/dialog/
# Maintainer: NuTyX core team
# Packager: thierryn1 at hispeed dot ch
name=dialog
version=1.1-20080819
release=1
source=(ftp://dickey.his.com/dialog/$name-$version.tgz\
http://nutyx.meticul.eu/files/patchs/$name/calendar.patch)
build() {
cd $name-$version
patch -Np1 -i ../calendar.patch
./configure --prefix=/usr \
--with-ncursesw \
--mandir=/usr/share/man
make
make DESTDIR=$PKG install
}
|