diff options
Diffstat (limited to 'system/dash')
-rw-r--r-- | system/dash/APKBUILD | 9 |
1 files changed, 3 insertions, 6 deletions
diff --git a/system/dash/APKBUILD b/system/dash/APKBUILD index 5ad4f8f51..8abd44b65 100644 --- a/system/dash/APKBUILD +++ b/system/dash/APKBUILD @@ -1,5 +1,5 @@ # Contributor: Natanael Copa <ncopa@alpinelinux.org> -# Maintainer: Kiyoshi Aman <kiyoshi.aman+adelie@gmail.com> +# Maintainer: Kiyoshi Aman <adelie@aerdan.vulpine.house> pkgname=dash pkgver=0.5.10.2 pkgrel=0 @@ -7,12 +7,12 @@ pkgdesc="Small and fast POSIX-compliant shell" url="http://gondor.apana.org.au/~herbert/dash/" arch="all" license="GPL-2.0+" +depends="" +makedepends="" subpackages="$pkgname-binsh::noarch $pkgname-doc" source="http://gondor.apana.org.au/~herbert/$pkgname/files/$pkgname-$pkgver.tar.gz" build() { - cd "$builddir" - ./configure \ --build=$CBUILD \ --host=$CHOST \ @@ -24,14 +24,11 @@ build() { } check() { - cd "$builddir" make check ./src/dash -c 'echo ok' } package() { - cd "$builddir" - make DESTDIR="$pkgdir" install } |