diff options
author | Leo <thinkabit.ukim@gmail.com> | 2019-05-25 08:51:05 -0300 |
---|---|---|
committer | Natanael Copa <ncopa@alpinelinux.org> | 2019-05-27 19:19:29 +0000 |
commit | 6a808fe6006bee8bc55daecf5f90ecf5118c8b43 (patch) | |
tree | 9f7d2aaa1ee7931f24b1468d7969c532f4b7b322 /main/fish | |
parent | 37e7188bb664695f67ba538083726ccc3f075269 (diff) | |
download | aports-6a808fe6006bee8bc55daecf5f90ecf5118c8b43.tar.bz2 aports-6a808fe6006bee8bc55daecf5f90ecf5118c8b43.tar.xz |
main/fish: fix deps on tools()
Diffstat (limited to 'main/fish')
-rw-r--r-- | main/fish/APKBUILD | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/main/fish/APKBUILD b/main/fish/APKBUILD index a91445ee60..2a2bc9e423 100644 --- a/main/fish/APKBUILD +++ b/main/fish/APKBUILD @@ -2,7 +2,7 @@ # Maintainer: Leo <thinkabit.ukim@gmail.com> pkgname=fish pkgver=3.0.2 -pkgrel=2 +pkgrel=3 pkgdesc="Modern interactive commandline shell" url="http://www.fishshell.com" arch="all" @@ -68,7 +68,7 @@ doc() { tools() { pkgdesc="$pkgdesc (tools)" - depends="$pkgname python man-db" + depends="$pkgname python cmd:man" mkdir -p "$subpkgdir"/usr/share/$pkgname mv "$pkgdir"/usr/share/$pkgname/tools "$subpkgdir"/usr/share/$pkgname |