commit 152d5d2b353b56dc3d33feff9351a96be212d296 Author: Thomas Penteker <tek@serverop.de> Date: Tue Oct 21 15:20:10 2014 +0200 dash: moved to opt diff --git a/dash/.footprint b/dash/.footprint deleted file mode 100644 index 6554042..0000000 --- a/dash/.footprint +++ /dev/null @@ -1,8 +0,0 @@ -drwxr-xr-x root/root bin/ -lrwxrwxrwx root/root bin/ash -> dash --rwxr-xr-x root/root bin/dash -drwxr-xr-x root/root usr/ -drwxr-xr-x root/root usr/man/ -drwxr-xr-x root/root usr/man/man1/ -lrwxrwxrwx root/root usr/man/man1/ash.1.gz -> dash.1.gz --rw-r--r-- root/root usr/man/man1/dash.1.gz diff --git a/dash/.md5sum b/dash/.md5sum deleted file mode 100644 index 9d00459..0000000 --- a/dash/.md5sum +++ /dev/null @@ -1 +0,0 @@ -5c152209680dab3c319e8923f6c51378 dash-0.5.8.tar.gz diff --git a/dash/Pkgfile b/dash/Pkgfile deleted file mode 100644 index d001398..0000000 --- a/dash/Pkgfile +++ /dev/null @@ -1,24 +0,0 @@ -# Description: The Almquist shell, a POSIX-compliant /bin/sh implementation -# URL: http://gondor.apana.org.au/~herbert/dash/ -# Packager: Mark Rosenstand, mark at borkware dot net -# Maintainer: Thomas Penteker, tek at serverop dot de -# Depends on: - -name=dash -version=0.5.8 -release=1 -source=(http://gondor.apana.org.au/~herbert/dash/files/dash-$version.tar.gz) - -build() { - cd dash-$version - - ./configure \ - --prefix= \ - --mandir=/usr/man - - make - make DESTDIR=$PKG install - - ln -s dash $PKG/bin/ash - ln -s dash.1 $PKG/usr/man/man1/ash.1 -} diff --git a/dash/post-install b/dash/post-install deleted file mode 100755 index 2fecde7..0000000 --- a/dash/post-install +++ /dev/null @@ -1,5 +0,0 @@ -#!/bin/sh -if ! grep dash /etc/shells > /dev/null 2>&1; then - echo "Adding dash to /etc/shells ..." - echo "/bin/dash" >> /etc/shells -fi