testing/dash: new aport

Small and fast POSIX-compliant shell
http://gondor.apana.org.au/~herbert/dash/
This commit is contained in:
Natanael Copa 2012-11-26 10:33:51 +00:00
parent 218f23a02b
commit 6d3da09949
2 changed files with 46 additions and 21 deletions

View File

@ -1,21 +0,0 @@
--- ./configure.ac.orig
+++ ./configure.ac
@@ -24,6 +24,8 @@
AC_PROG_LN_S
AC_PROG_MAKE_SET
+AM_PROG_AR
+
dnl check environment
AC_AIX
AC_ISC_POSIX
@@ -37,9 +39,6 @@
AM_CONDITIONAL(NO_RDYNAMIC, test x$NO_RDYNAMIC = xyes)
AC_EXEEXT
-
-dnl more automake stuff
-AM_C_PROTOTYPES
dnl libtool
AC_DISABLE_STATIC

46
testing/dash/APKBUILD Normal file
View File

@ -0,0 +1,46 @@
# Maintainer: Natanael Copa <ncopa@alpinelinux.org>
pkgname=dash
pkgver=0.5.7
pkgrel=0
pkgdesc="Small and fast POSIX-compliant shell"
url="http://gondor.apana.org.au/~herbert/dash/"
arch="all"
license="GPLv2+"
depends=""
depends_dev=""
# needs 'nl' utility from coreutils
makedepends="$depends_dev coreutils"
install=""
subpackages="$pkgname-doc"
source="http://gondor.apana.org.au/~herbert/dash/files/dash-$pkgver.tar.gz"
_builddir="$srcdir"/dash-$pkgver
prepare() {
local i
cd "$_builddir"
for i in $source; do
case $i in
*.patch) msg $i; patch -p1 -i "$srcdir"/$i || return 1;;
esac
done
}
build() {
cd "$_builddir"
./configure --prefix=/usr \
--bindir=/bin \
--sysconfdir=/etc \
--mandir=/usr/share/man \
--infodir=/usr/share/info \
--localstatedir=/var \
|| return 1
make || return 1
}
package() {
cd "$_builddir"
make DESTDIR="$pkgdir" install || return 1
rm -f "$pkgdir"/usr/lib/*.la
}
md5sums="f6cedb10ae7258adb5ab17a10ae80d51 dash-0.5.7.tar.gz"