blob: 5132d44b32a874925d9bc749022252f34e82e0d6 (
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
31
32
33
34
35
36
37
38
39
40
|
#!/usr/bin/make -f
build-ncurses:
oh-autoconfigure -B obj-ncurses -- \
--with-install-prefix="$${PWD}/dest" \
--without-profile \
--without-debug \
--without-ada \
--with-shared \
--disable-termcap \
--with-termlib=tinfo \
--with-ticlib=tic \
--disable-python
oh-autobuild -B obj-ncurses
touch $@
build-ncursesw:
oh-autoconfigure -B obj-ncursesw -- \
--includedir=/usr/include/ncursesw \
--with-install-prefix="$${PWD}/dest" \
--without-manpages \
--without-progs \
--without-profile \
--without-debug \
--without-ada \
--with-shared \
--disable-termcap \
--without-termlib \
--without-ticlib \
--enable-widec \
--disable-python
oh-autobuild -B obj-ncursesw
touch $@
build: build-ncurses build-ncursesw
install: build
(cd obj-ncurses && make install)
(cd obj-ncursesw && make install.libs)
oh-installfiles
|