Received: from sebsite.pw (sebsite.pw [71.19.150.50]) by nld3-dev1.alpinelinux.org (Postfix) with ESMTPS id 6AB47780D0F for <~alpine/aports@lists.alpinelinux.org>; Tue, 4 Jan 2022 22:52:17 +0000 (UTC) Received: from localhost.localdomain (unknown [8.9.88.219]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (2048 bits) server-digest SHA256) (No client certificate requested) by sebsite.pw (Postfix) with ESMTPSA id 53BE538016C; Tue, 4 Jan 2022 22:51:57 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=sebsite.pw; s=sebsite; t=1641336717; bh=XihdIqEw+yav+ltv0fg9Y+9UD+ydTMxDxuDDG00c1ZM=; h=From:To:Cc:Subject:Date; b=kwW6NMWC2MGieAvQnxzwqAxIYWc827AJl+DyVDjndgETUY4MXyg2IQPL6KnMPKXZN TrWb6mgdgH7krVHjGXz9EvOAs5qY7dvzU4gNvwGHEI/JDyuOrxnApxL7EhJtrclH/e Eyc1qjHXK3fXxiLqqscnuCNO408mGRcSByUlSFSJ6+ENgjNJ/dbJ+HKJzAZrQCTNHj VIgYtWCkrf1zE5JpITQs3Dzoy0yz2zwhv59ihuBrqBpLITs0fHW+p8DhbhaRv1goSG c08wnN+VirNj400mu2WMzahApjny95/99jKk4XUTuE/4W3Jm4Liw68ystL/f8t2Dzz WVORErjIV0+AQ== From: Sebastian To: ~alpine/aports@lists.alpinelinux.org Cc: Sebastian Subject: [PATCH] main/procps: install documentation to subdirectory Date: Tue, 4 Jan 2022 17:50:04 -0500 Message-Id: <20220104225004.18059-1-sebastian@sebsite.pw> X-Mailer: git-send-email 2.34.1 MIME-Version: 1.0 Content-Transfer-Encoding: 8bit procps currently installs its docs into /usr/share/doc, which results in the files `FAQ` and `bugs.md` being installed directly into /usr/share/doc rather than a subdirectory. This commit fixes procps to instead install docs to /usr/share/doc/procps. Signed-off-by: Sebastian --- main/procps/APKBUILD | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/main/procps/APKBUILD b/main/procps/APKBUILD index df83fd4e..425ce3a2 100644 --- a/main/procps/APKBUILD +++ b/main/procps/APKBUILD @@ -1,7 +1,7 @@ # Maintainer: Natanael Copa pkgname=procps pkgver=3.3.17 -pkgrel=0 +pkgrel=1 pkgdesc="Utilities for monitoring your system and processes on your system" url="https://gitlab.com/procps-ng/procps" arch="all" @@ -40,7 +40,7 @@ build() { --libdir=/lib \ --mandir=/usr/share/man \ --sysconfdir=/etc \ - --docdir=/usr/share/doc \ + --docdir=/usr/share/doc/procps \ --datarootdir=/usr/share \ --disable-static \ --disable-w-from \ -- 2.34.1