main/librsync: lib path correction /usr/lib64 -> /usr/lib

This commit is contained in:
Bernhard J. M. Gruen 2018-04-05 16:11:01 +02:00 committed by Natanael Copa
parent 9c54e8fb98
commit fb6c3b6ea8

View File

@ -2,7 +2,7 @@
# Maintainer: Jeremy Thomerson <jeremy@thomersonfamily.com> # Maintainer: Jeremy Thomerson <jeremy@thomersonfamily.com>
pkgname=librsync pkgname=librsync
pkgver=2.0.2 pkgver=2.0.2
pkgrel=0 pkgrel=1
pkgdesc="librsync implements the rolling-checksum algorithm of rsync" pkgdesc="librsync implements the rolling-checksum algorithm of rsync"
url="https://github.com/librsync/librsync" url="https://github.com/librsync/librsync"
arch="all" arch="all"
@ -14,8 +14,13 @@ builddir="$srcdir/$pkgname-$pkgver"
build() { build() {
cd "$builddir" cd "$builddir"
cmake -DCMAKE_INSTALL_PREFIX=/usr -DCMAKE_BUILD_TYPE=release . cmake \
-DCMAKE_BUILD_TYPE=release \
-DCMAKE_INSTALL_LIBDIR=lib \
-DCMAKE_INSTALL_PREFIX=/usr \
.
make make
} }
package() { package() {