opt/tcsh/Pkgfile

25 lines
493 B
Plaintext
Raw Normal View History

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
2023-04-16 11:31:29 +02:00
version=6.24.10
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
2021-04-27 14:37:16 +02:00
./configure \
--prefix=/usr \
--bindir=/bin \
--disable-nls-catalogs
make
make DESTDIR=$PKG install
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
}