diff options
Diffstat (limited to 'main/bash/APKBUILD')
-rw-r--r-- | main/bash/APKBUILD | 11 |
1 files changed, 5 insertions, 6 deletions
diff --git a/main/bash/APKBUILD b/main/bash/APKBUILD index 84e55c1810..052d3690cb 100644 --- a/main/bash/APKBUILD +++ b/main/bash/APKBUILD @@ -1,17 +1,16 @@ # Maintainer: Natanael Copa <ncopa@alpinelinux.org> - pkgname=bash pkgver=4.2.045 _patchlevel=${pkgver##*.} _myver=${pkgver%.*} _patchbase=${_myver%.*}${_myver#*.} -pkgrel=0 +pkgrel=1 pkgdesc="The GNU Bourne Again shell" -arch="all" -license='GPL' url="http://www.gnu.org/software/bash/bash.html" +arch="all" +license="GPL3+" makedepends="readline-dev ncurses-dev bison flex" -depends= +depends="" subpackages="$pkgname-doc" source="http://ftp.gnu.org/gnu/bash/bash-${_myver}.tar.gz bash-noinfo.patch @@ -66,7 +65,7 @@ build() { package() { cd ${startdir}/src/${pkgname}-${_myver} - make DESTDIR=${pkgdir} install + make DESTDIR=${pkgdir} install || return 1 rm -rf "$pkgdir"/usr/share/locale } |