core/dash/Pkgfile

24 lines
575 B
Plaintext
Raw Normal View History

2015-06-21 18:48:39 +02:00
# Description: The Almquist shell, a POSIX-compliant /bin/sh implementation
2021-06-04 12:27:12 +02:00
# URL: http://gondor.apana.org.au/~herbert/dash/
# Maintainer: CRUX System Team, core-ports at crux dot nu
2015-06-21 18:48:39 +02:00
name=dash
2022-12-11 14:07:08 +01:00
version=0.5.12
release=2
source=(http://gondor.apana.org.au/~herbert/dash/files/$name-$version.tar.gz
$name-20230109.patch)
2015-06-21 18:48:39 +02:00
build() {
2023-12-24 12:43:51 +01:00
cd $name-$version
2023-08-21 21:49:13 +02:00
patch -p1 -i $SRC/$name-20230109.patch
autoreconf -if
./configure --prefix=/usr --bindir=/bin
2023-12-24 12:43:51 +01:00
make
make DESTDIR=$PKG install
2023-08-21 21:49:13 +02:00
2023-12-24 12:43:51 +01:00
ln -s dash $PKG/bin/sh
ln -s dash.1 $PKG/usr/share/man/man1/sh.1
2015-06-21 18:48:39 +02:00
}