Check-in [c6e2e3505b]
Overview
Comment:Added ncurses package
Downloads: Tarball | ZIP archive | SQL archive
Timelines: family | ancestors | descendants | both | packages
Files: files | file ages | folders
SHA1: c6e2e3505b09370841d1668f202ef80a24b5fae4
User & Date: rkeene on 2014-11-12 07:25:46
Other Links: branch diff | manifest | tags
Context
2014-11-12
07:32
Added ticlib to ncurses to match other packages check-in: c956780267 user: rkeene tags: packages
07:25
Added ncurses package check-in: c6e2e3505b user: rkeene tags: packages
07:25
Updated to create a better build environment check-in: 7c4247cf4b user: rkeene tags: packages
Changes

Added pkgs/ncurses version [26f97682e0].









































>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
#! /usr/bin/env bash

version='5.9'
url="http://ftp.gnu.org/gnu/ncurses/ncurses-${version}.tar.gz"
domain=core.appfs.rkeene.org
sha256='9046298fb440324c9d4135ecea7879ffed8546dd1b58e59430ea07a4633f563b'
configure_extra=(--with-termlib --with-shared)

function postinstall() {
	# Create libtermcap compatability
	## Create libtermcap.so shared object
	cat << \_EOF_ > "${destdir}/${prefix}/lib/libtermcap.so"
GROUP( libtinfo.so )
_EOF_

	## Create termcap.h header
	cat << \_EOF_ > "${destdir}/${prefix}/include/termcap.h"
#include <ncurses/termcap.h>
_EOF_
}