1
0
forked from ports/contrib

fmt: switched libdir from lib64 to lib

This commit is contained in:
Tim Biermann 2020-07-08 11:29:02 +00:00
parent d39eae98f9
commit 1a8ba2ed3b
3 changed files with 15 additions and 14 deletions

View File

@ -13,13 +13,13 @@ drwxr-xr-x root/root usr/include/fmt/
-rw-r--r-- root/root usr/include/fmt/posix.h
-rw-r--r-- root/root usr/include/fmt/printf.h
-rw-r--r-- root/root usr/include/fmt/ranges.h
drwxr-xr-x root/root usr/lib64/
drwxr-xr-x root/root usr/lib64/cmake/
drwxr-xr-x root/root usr/lib64/cmake/fmt/
-rw-r--r-- root/root usr/lib64/cmake/fmt/fmt-config-version.cmake
-rw-r--r-- root/root usr/lib64/cmake/fmt/fmt-config.cmake
-rw-r--r-- root/root usr/lib64/cmake/fmt/fmt-targets-release.cmake
-rw-r--r-- root/root usr/lib64/cmake/fmt/fmt-targets.cmake
-rw-r--r-- root/root usr/lib64/libfmt.a
drwxr-xr-x root/root usr/lib64/pkgconfig/
-rw-r--r-- root/root usr/lib64/pkgconfig/fmt.pc
drwxr-xr-x root/root usr/lib/
drwxr-xr-x root/root usr/lib/cmake/
drwxr-xr-x root/root usr/lib/cmake/fmt/
-rw-r--r-- root/root usr/lib/cmake/fmt/fmt-config-version.cmake
-rw-r--r-- root/root usr/lib/cmake/fmt/fmt-config.cmake
-rw-r--r-- root/root usr/lib/cmake/fmt/fmt-targets-release.cmake
-rw-r--r-- root/root usr/lib/cmake/fmt/fmt-targets.cmake
-rw-r--r-- root/root usr/lib/libfmt.a
drwxr-xr-x root/root usr/lib/pkgconfig/
-rw-r--r-- root/root usr/lib/pkgconfig/fmt.pc

View File

@ -1,5 +1,5 @@
untrusted comment: verify with /etc/ports/contrib.pub
RWSagIOpLGJF34JEErnRsHepWm5LoPEjaOkhkhhYgn7TzxKZWYO9yNpI1+aBBEAJU5D/sQ+vy8JUl8pioyI9ZJsP3BJ+klsU7QM=
SHA256 (Pkgfile) = 5ebb01c18c01043095197b43f619330224ea908d87ddcd4ea878bfc591ffdd24
SHA256 (.footprint) = 813c3488d299653be1bc45ff5d739fe2b82691692dee8c18a22889c6f225ad05
RWSagIOpLGJF3ycwxqVW/FIQUlBdObyz9qId+pzNsupdBjHfPatgTSHNjN4VY8T2K2cOGehFOsEeQg3d0TnMGccIl6ybvFTGygw=
SHA256 (Pkgfile) = f56895b2c70d91b1524f5928c1a0937bc84c854087ca6f56839f0a02161ec9c8
SHA256 (.footprint) = 4b890f044167a1c6f8594cf4019b1cf0eb9b8fd3eb6b7779f0e88c18b757a456
SHA256 (fmt-7.0.1.tar.gz) = ac335a4ca6beaebec4ddb2bc35b9ae960b576f3b64a410ff2c379780f0cd4948

View File

@ -10,7 +10,8 @@ source=(https://github.com/fmtlib/$name/archive/$version/$name-$version.tar.gz)
build() {
cmake -S$name-$version -Bbuild \
-DCMAKE_INSTALL_PREFIX=/usr
-DCMAKE_INSTALL_PREFIX=/usr \
-DCMAKE_INSTALL_LIBDIR=lib
cmake --build build
DESTDIR=$PKG cmake --build build --target install
}