Date: Monday, October 31, 2022 @ 23:23:51 Author: arodseth Revision: 1340015
upgpkg: libutf8proc 2.8.0-1 Modified: libutf8proc/trunk/PKGBUILD ----------+ PKGBUILD | 22 +++++++++++----------- 1 file changed, 11 insertions(+), 11 deletions(-) Modified: PKGBUILD =================================================================== --- PKGBUILD 2022-10-31 23:22:40 UTC (rev 1340014) +++ PKGBUILD 2022-10-31 23:23:51 UTC (rev 1340015) @@ -1,16 +1,16 @@ # Maintainer: Alexander F. Rødseth <[email protected]> pkgname=libutf8proc -pkgver=2.7.0 -_sover=2.5.0 -pkgrel=2 +pkgver=2.8.0 +_sover=2.6.0 +pkgrel=1 pkgdesc='C library for processing UTF-8 encoded Unicode strings' arch=(x86_64) url='https://github.com/JuliaStrings/utf8proc' license=(custom) makedepends=(cmake git ninja) -source=("git+$url#commit=8ca6144c85c165987cb1c5d8395c7314e13d4cd7" # tag: v2.7.0 - libutf8proc.pc.in) +source=("git+$url#commit=1cb28a66ca79a0845e99433fd1056257456cef8b" # tag: v2.8.0 + $pkgname.pc.in) b2sums=('SKIP' '27cfd2086b63b0d9b08720d966d760e4237734a85a293eab81065f49857aa11ed57682a4bd26e4081701d34e61c156170b65bbf38f19387539f5472d0d94db23') @@ -19,7 +19,8 @@ } build() { - cmake -B build \ + cmake \ + -B build \ -D CMAKE_BUILD_TYPE=Release \ -D CMAKE_INSTALL_LIBDIR=lib \ -D CMAKE_INSTALL_PREFIX=/usr \ @@ -36,10 +37,9 @@ cd utf8proc install -Dm644 utf8proc.h "$pkgdir/usr/include/utf8proc.h" install -Dm644 LICENSE.md "$pkgdir/usr/share/licenses/$pkgname/LICENSE.md" - install -Dm644 "$srcdir/libutf8proc.pc" \ - "$pkgdir/usr/lib/pkgconfig/libutf8proc.pc" - install -Dm644 ../build/libutf8proc.so.$_sover \ - "$pkgdir/usr/lib/libutf8proc.so.$_sover" - ln -s /usr/lib/libutf8proc.so.$_sover "$pkgdir/usr/lib/libutf8proc.so" + install -Dm644 "$srcdir/$pkgname.pc" "$pkgdir/usr/lib/pkgconfig/$pkgname.pc" + install -Dm644 ../build/$pkgname.so.$_sover \ + "$pkgdir/usr/lib/$pkgname.so.$_sover" + ln -s /usr/lib/$pkgname.so.$_sover "$pkgdir/usr/lib/$pkgname.so" ldconfig -n "$pkgdir/usr/lib" }
