diff options
author | Francesco Colista <francesco.colista@gmail.com> | 2012-12-13 08:45:59 +0000 |
---|---|---|
committer | Francesco Colista <francesco.colista@gmail.com> | 2012-12-13 08:46:28 +0000 |
commit | f1a22d337dffc7c51c8db0a9bc9a9bbc753ba006 (patch) | |
tree | c9b4cf72059afc965dcbc01a72680619db1eab1c /testing | |
parent | af4e35a2a894645b516854193511ba48094e6df2 (diff) | |
download | aports-f1a22d337dffc7c51c8db0a9bc9a9bbc753ba006.tar.bz2 aports-f1a22d337dffc7c51c8db0a9bc9a9bbc753ba006.tar.xz |
testing/mosh: makedepends fix
Diffstat (limited to 'testing')
-rw-r--r-- | testing/mosh/APKBUILD | 16 |
1 files changed, 3 insertions, 13 deletions
diff --git a/testing/mosh/APKBUILD b/testing/mosh/APKBUILD index e5c7c4416b..89349f5fff 100644 --- a/testing/mosh/APKBUILD +++ b/testing/mosh/APKBUILD @@ -7,23 +7,13 @@ pkgdesc="mobile shell (mosh) surviving disconnects with local echo and line edit url="http://mosh.mit.edu" arch="all" license="GPL3" -depends="" -depends_dev="ncurses-dev zlib-dev openssl-dev perl perl-io-tty protobuf-dev openssh" -makedepends="$depends_dev" +depends="perl" +depends_dev="" +makedepends="ncurses-dev zlib-dev openssl-dev perl-dev perl-io-tty protobuf-dev" install="" subpackages="$pkgname-doc" source="https://github.com/downloads/keithw/$pkgname/$pkgname-$pkgver.tar.gz" _builddir="$srcdir"/$pkgname-$pkgver -prepare() { - local i - cd "$_builddir" - for i in $source; do - case $i in - *.patch) msg $i; patch -p1 -i "$srcdir"/$i || return 1;; - esac - done -} - build() { cd "$_builddir" ./configure --prefix=/usr \ |