Check-in [c956780267]
Overview
Comment:Added ticlib to ncurses to match other packages
Downloads: Tarball | ZIP archive | SQL archive
Timelines: family | ancestors | descendants | both | packages
Files: files | file ages | folders
SHA1: c956780267a4be5697ab5a39154fe48862f1deb0
User & Date: rkeene on 2014-11-12 07:32:03
Other Links: branch diff | manifest | tags
Context
2014-11-12
07:38
Updated to build with latest version of dependencies if their version is not specified, otherwise, try to find one check-in: 5ceded1d7d user: rkeene tags: packages
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
Changes

Added pkgs/bash version [22239c774b].















>
>
>
>
>
>
>
1
2
3
4
5
6
7
#! /usr/bin/env bash

version='4.3.30'
url="http://ftp.gnu.org/gnu/bash/bash-${version}.tar.gz"
domain=core.appfs.rkeene.org
sha256='317881019bbf2262fb814b7dd8e40632d13c3608d2f237800a8828fbb8a640dd'
require=(zlib readline ncurses)

Modified pkgs/ncurses from [26f97682e0] to [7553fdbe53].

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_
}






|













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-ticlib --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_
}