aboutsummaryrefslogtreecommitdiffstats
path: root/testing/dash
diff options
context:
space:
mode:
authorJakub Jirutka <jakub@jirutka.cz>2017-10-31 23:32:06 +0100
committerJakub Jirutka <jakub@jirutka.cz>2017-10-31 23:32:51 +0100
commit238c1775cc0e86b38aeddd6cf8656260999278e7 (patch)
treec3ff87460f91912e296a8e0a0e0f6398481fda49 /testing/dash
parent5f190354a00c258422e6df011e37decbdf1ff510 (diff)
downloadaports-238c1775cc0e86b38aeddd6cf8656260999278e7.tar.bz2
aports-238c1775cc0e86b38aeddd6cf8656260999278e7.tar.xz
community/dash: move from testing
Diffstat (limited to 'testing/dash')
-rw-r--r--testing/dash/APKBUILD41
-rw-r--r--testing/dash/dash.post-install3
l---------testing/dash/dash.post-upgrade1
-rw-r--r--testing/dash/dash.pre-deinstall3
4 files changed, 0 insertions, 48 deletions
diff --git a/testing/dash/APKBUILD b/testing/dash/APKBUILD
deleted file mode 100644
index 3e855de699..0000000000
--- a/testing/dash/APKBUILD
+++ /dev/null
@@ -1,41 +0,0 @@
-# Maintainer: Natanael Copa <ncopa@alpinelinux.org>
-pkgname=dash
-pkgver=0.5.9.1
-pkgrel=0
-pkgdesc="Small and fast POSIX-compliant shell"
-url="http://gondor.apana.org.au/~herbert/dash/"
-arch="all"
-license="GPLv2+"
-# needs 'nl' utility from coreutils
-makedepends="coreutils"
-install="$pkgname.post-install $pkgname.post-upgrade $pkgname.pre-deinstall"
-subpackages="$pkgname-doc"
-source="http://gondor.apana.org.au/~herbert/$pkgname/files/$pkgname-$pkgver.tar.gz"
-builddir="$srcdir/$pkgname-$pkgver"
-
-build() {
- cd "$builddir"
-
- ./configure \
- --build=$CBUILD \
- --host=$CHOST \
- --prefix=/usr \
- --sysconfdir=/etc \
- --mandir=/usr/share/man \
- --localstatedir=/var
- make
-}
-
-check() {
- cd "$builddir"
-
- ./src/dash -c 'echo ok'
-}
-
-package() {
- cd "$builddir"
-
- make DESTDIR="$pkgdir" install
-}
-
-sha512sums="d56a043b8fab4693d3f70cceb531c37174e7ded4acd5549e53048d7ce29125ff21d7e758f51a4a73e06250d051e246467039989275838c19a2579edea3f72b7d dash-0.5.9.1.tar.gz"
diff --git a/testing/dash/dash.post-install b/testing/dash/dash.post-install
deleted file mode 100644
index 69af64bb04..0000000000
--- a/testing/dash/dash.post-install
+++ /dev/null
@@ -1,3 +0,0 @@
-#!/bin/sh
-add-shell '/bin/dash'
-exit 0
diff --git a/testing/dash/dash.post-upgrade b/testing/dash/dash.post-upgrade
deleted file mode 120000
index 3514e3b3c1..0000000000
--- a/testing/dash/dash.post-upgrade
+++ /dev/null
@@ -1 +0,0 @@
-dash.post-install \ No newline at end of file
diff --git a/testing/dash/dash.pre-deinstall b/testing/dash/dash.pre-deinstall
deleted file mode 100644
index 07f1c9d348..0000000000
--- a/testing/dash/dash.pre-deinstall
+++ /dev/null
@@ -1,3 +0,0 @@
-#!/bin/sh
-remove-shell '/bin/dash'
-exit 0