From 59ef7a8da8acf55f984a0b49c3bb5c19a272028a Mon Sep 17 00:00:00 2001 From: prspkt Date: Fri, 19 Jul 2019 22:13:03 +0300 Subject: [PATCH] community/rtorrent: clarify license, modernize --- community/rtorrent/APKBUILD | 7 +------ 1 file changed, 1 insertion(+), 6 deletions(-) diff --git a/community/rtorrent/APKBUILD b/community/rtorrent/APKBUILD index 3be82003871..261b01becac 100644 --- a/community/rtorrent/APKBUILD +++ b/community/rtorrent/APKBUILD @@ -2,22 +2,19 @@ # Contributor: Sören Tempel # Contributor: Bartłomiej Piotrowski # Maintainer: Jakub Jirutka - pkgname=rtorrent pkgver=0.9.8 pkgrel=0 pkgdesc="Ncurses BitTorrent client based on libTorrent" url="https://rakshasa.github.io/rtorrent/" -license="GPL" +license="GPL-2.0-or-later" arch="all" makedepends="libsigc++-dev libtorrent-dev curl-dev xmlrpc-c-dev ncurses-dev" checkdepends="cppunit-dev" subpackages="$pkgname-doc" source="https://rtorrent.net/downloads/$pkgname-$pkgver.tar.gz" -builddir="$srcdir/$pkgname-$pkgver" build() { - cd "$builddir" ./configure \ --build=$CBUILD \ --host=$CHOST \ @@ -32,12 +29,10 @@ build() { } check() { - cd "$builddir" make check } package() { - cd "$builddir" make DESTDIR="$pkgdir" install install -Dm644 doc/rtorrent.rc "$pkgdir"/usr/share/doc/rtorrent/rtorrent.rc }