git: 50f1a6bfcfee - main - security/rpm-sequoia: Correct the location of the .pc file
- Go to: [ bottom of page ] [ top of archives ] [ this month ]
Date: Tue, 26 Dec 2023 01:20:00 UTC
The branch main has been updated by yuri:
URL: https://cgit.FreeBSD.org/ports/commit/?id=50f1a6bfcfee879eb4d2b19297e4e23a18c63c08
commit 50f1a6bfcfee879eb4d2b19297e4e23a18c63c08
Author: Yuri Victorovich <yuri@FreeBSD.org>
AuthorDate: 2023-12-25 23:02:19 +0000
Commit: Yuri Victorovich <yuri@FreeBSD.org>
CommitDate: 2023-12-26 01:19:56 +0000
security/rpm-sequoia: Correct the location of the .pc file
---
security/rpm-sequoia/Makefile | 7 ++++---
1 file changed, 4 insertions(+), 3 deletions(-)
diff --git a/security/rpm-sequoia/Makefile b/security/rpm-sequoia/Makefile
index 684010499527..18463b68025b 100644
--- a/security/rpm-sequoia/Makefile
+++ b/security/rpm-sequoia/Makefile
@@ -1,6 +1,7 @@
PORTNAME= rpm-sequoia
DISTVERSIONPREFIX= v
DISTVERSION= 1.5.0
+PORTREVISION= 1
CATEGORIES= security archivers
MAINTAINER= yuri@FreeBSD.org
@@ -248,14 +249,14 @@ OPENSSLINC= /usr/include
OPENSSLLIB= /usr/lib
PLIST_FILES= lib/librpm_sequoia.so \
- pkgconfig/rpm-sequoia.pc
+ libdata/pkgconfig/rpm-sequoia.pc
do-install:
# .so lib
${MKDIR} ${STAGEDIR}${PREFIX}/lib
${INSTALL_LIB} ${WRKDIR}/target/*-unknown-freebsd/release/librpm_sequoia.so ${STAGEDIR}${PREFIX}/lib
# .pc file
- ${MKDIR} ${STAGEDIR}${PREFIX}/pkgconfig
- ${INSTALL_DATA} ${WRKDIR}/target/release/rpm-sequoia.pc ${STAGEDIR}${PREFIX}/pkgconfig/rpm-sequoia.pc
+ ${MKDIR} ${STAGEDIR}${PREFIX}/libdata/pkgconfig
+ ${INSTALL_DATA} ${WRKDIR}/target/release/rpm-sequoia.pc ${STAGEDIR}${PREFIX}/libdata/pkgconfig/rpm-sequoia.pc
.include <bsd.port.mk>