32 lines
914 B
Text
32 lines
914 B
Text
# Template file for 'rc'
|
|
pkgname=rc
|
|
version=1.7.1
|
|
revision=3
|
|
build_style=gnu-configure
|
|
register_shell="/bin/rc"
|
|
short_desc="An alternative implementation of the plan 9 rc shell"
|
|
maintainer="Christian Neukirchen <chneukirchen@gmail.com>"
|
|
license="custom"
|
|
homepage="http://tobold.org/article/rc"
|
|
distfiles="http://static.tobold.org/$pkgname/$pkgname-$version.tar.gz"
|
|
checksum=1cff23e897a038422458ba01567a5a2650935205862c3bbf73e773807c248240
|
|
|
|
build_options="readline libedit static"
|
|
build_options_default="readline"
|
|
|
|
configure_args="ac_cv_sys_restartable_syscalls=no"
|
|
|
|
if [ "$build_option_readline" ]; then
|
|
configure_args+=" --with-readline"
|
|
makedepends="readline-devel"
|
|
elif [ "$build_option_libedit" ]; then
|
|
configure_args+=" --with-editline"
|
|
makedepends="libedit-devel"
|
|
fi
|
|
|
|
pre_configure() {
|
|
if [ "$build_option_static" ]; then
|
|
CFLAGS+=" -static"
|
|
LDFLAGS+=" -static"
|
|
fi
|
|
}
|