community/libsepol: move library from /lib to /usr/lib

This commit is contained in:
Pablo Correa Gómez 2024-09-12 16:28:41 +02:00 committed by Natanael Copa
parent 5c18c2954b
commit c367075ce2

View file

@ -1,7 +1,7 @@
# Maintainer: Natanael Copa <ncopa@alpinelinux.org>
pkgname=libsepol
pkgver=3.6
pkgrel=0
pkgrel=1
pkgdesc="SELinux binary policy manipulation library"
url="https://github.com/SELinuxProject/selinux/wiki"
arch="all"
@ -14,11 +14,11 @@ source="https://github.com/SELinuxProject/selinux/releases/download/$pkgver/libs
"
build() {
make
make SHLIBDIR="/usr/lib"
}
package() {
make DESTDIR="$pkgdir" install
make SHLIBDIR="/usr/lib" DESTDIR="$pkgdir" install
}
check() {