diff options
author | Natanael Copa <ncopa@alpinelinux.org> | 2008-11-24 10:24:03 +0000 |
---|---|---|
committer | Natanael Copa <ncopa@alpinelinux.org> | 2008-11-24 10:24:03 +0000 |
commit | fe03729edda38d324141155b1a32470de73b0b52 (patch) | |
tree | 1b88440ea9e06f856eecea19228c74cea55cf391 /core/bash | |
parent | e6f9cc1c67526b162f1a29b8dd6901cf5455e701 (diff) | |
download | aports-fe03729edda38d324141155b1a32470de73b0b52.tar.bz2 aports-fe03729edda38d324141155b1a32470de73b0b52.tar.xz |
core/bash: fixed dependencies
Diffstat (limited to 'core/bash')
-rw-r--r-- | core/bash/APKBUILD | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/core/bash/APKBUILD b/core/bash/APKBUILD index 2f803070cd..2911ec0aa1 100644 --- a/core/bash/APKBUILD +++ b/core/bash/APKBUILD @@ -7,7 +7,8 @@ pkgrel=3 pkgdesc="The GNU Bourne Again shell" license='GPL' url="http://www.gnu.org/software/bash/bash.html" -depends='readline uclibc' +makedepends="readline-dev ncurses-dev" +depends='readline ncurses uclibc' source="http://ftp.gnu.org/gnu/bash/bash-3.2.tar.gz bash-noinfo.patch " @@ -17,7 +18,7 @@ for _i in $(seq 1 $_patchlevel); do source="$source http://ftp.gnu.org/gnu/bash/bash-3.2-patches/bash32-$_p" done -subpackages="bash-doc" +subpackages="$pkgname-doc" build() { local p |