20 lines
478 B
Plaintext
20 lines
478 B
Plaintext
# Description: Generic PCI access library
|
|
# URL: http://xorg.freedesktop.org
|
|
# Maintainer: CRUX Xorg Team, xorg-ports at crux dot nu
|
|
|
|
name=xorg-libpciaccess
|
|
version=0.17
|
|
release=1
|
|
source=(https://www.x.org/releases/individual/lib/libpciaccess-$version.tar.xz)
|
|
|
|
build() {
|
|
meson setup libpciaccess-$version build \
|
|
--prefix=/usr \
|
|
--buildtype=plain \
|
|
--wrap-mode nodownload \
|
|
-D b_lto=true \
|
|
-D b_pie=true
|
|
meson compile -C build
|
|
DESTDIR=$PKG meson install -C build
|
|
}
|