diff options
author | Leo <thinkabit.ukim@gmail.com> | 2020-02-25 19:00:26 -0300 |
---|---|---|
committer | Leo <thinkabit.ukim@gmail.com> | 2020-02-25 19:00:26 -0300 |
commit | ab1b025a4e5e8e9b2d66c265a59fa5d4f623902f (patch) | |
tree | ccae6915d24ed0ebb9f757d8174d5b70e61f8842 | |
parent | 111ce76a02b5ebcc3fb14df95636bcca5f445107 (diff) | |
download | aports-ab1b025a4e5e8e9b2d66c265a59fa5d4f623902f.tar.bz2 aports-ab1b025a4e5e8e9b2d66c265a59fa5d4f623902f.tar.xz |
main/putty: depend on ncurses-terminfo
-rw-r--r-- | main/putty/APKBUILD | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/main/putty/APKBUILD b/main/putty/APKBUILD index 87d7b61579..dd8ab2bc0f 100644 --- a/main/putty/APKBUILD +++ b/main/putty/APKBUILD @@ -1,17 +1,17 @@ # Maintainer: Jeff Bilyk <jbilyk@alpinelinux.org> pkgname=putty pkgver=0.73 -pkgrel=0 +pkgrel=1 pkgdesc="SSH and telnet client" url="https://www.chiark.greenend.org.uk/~sgtatham/putty/" arch="all" license="MIT" +depends="ncurses-terminfo" makedepends="linux-headers" subpackages="$pkgname-doc" source="http://the.earth.li/~sgtatham/putty/$pkgver/putty-$pkgver.tar.gz fix-ppc64le-disable-werror.patch" options="!check" # no test suite -builddir="$srcdir"/putty-$pkgver # secfixes: # 0.73-r0: @@ -24,7 +24,6 @@ builddir="$srcdir"/putty-$pkgver # - CVE-2019-9898 build() { - cd "$builddir" ./configure \ --build=$CBUILD \ --host=$CHOST \ @@ -33,7 +32,6 @@ build() { } package() { - cd "$builddir" make DESTDIR="$pkgdir" install } |