2009-06-13 22:29:30 +02:00
|
|
|
# Description: Enhanced version of the Berkeley C shell (csh)
|
2021-04-27 14:37:16 +02:00
|
|
|
# URL: https://www.tcsh.org
|
|
|
|
# Maintainer: Juergen Daubert, jue at crux dot nu
|
|
|
|
# Depends on: ncurses
|
2009-06-13 22:29:30 +02:00
|
|
|
|
|
|
|
name=tcsh
|
2024-04-05 13:27:05 +02:00
|
|
|
version=6.24.12
|
2016-11-25 17:49:06 +01:00
|
|
|
release=1
|
2021-11-12 11:44:07 +01:00
|
|
|
source=(https://astron.com/pub/$name/$name-$version.tar.gz \
|
2021-04-27 14:37:16 +02:00
|
|
|
csh.login csh.logout csh.cshrc)
|
2009-06-13 22:29:30 +02:00
|
|
|
|
|
|
|
build() {
|
2021-04-27 14:37:16 +02:00
|
|
|
cd $name-$version
|
2016-09-22 20:54:57 +02:00
|
|
|
|
2021-04-27 14:37:16 +02:00
|
|
|
./configure \
|
|
|
|
--prefix=/usr \
|
|
|
|
--bindir=/bin \
|
|
|
|
--disable-nls-catalogs
|
|
|
|
make
|
|
|
|
make DESTDIR=$PKG install
|
2016-09-22 20:54:57 +02:00
|
|
|
|
2021-04-27 14:37:16 +02:00
|
|
|
install -d $PKG/etc
|
|
|
|
install -m 644 $SRC/csh.* $PKG/etc
|
2009-06-13 22:29:30 +02:00
|
|
|
}
|