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