xorg/xorg-libpciaccess/Pkgfile

25 lines
614 B
Plaintext
Raw Normal View History

2008-03-20 20:06:27 +01:00
# Description: Generic PCI access library
# URL: http://xorg.freedesktop.org
# Maintainer: CRUX Xorg Team, xorg-ports at crux dot nu
# Depends on: zlib
# Optional: hwdata
2008-03-20 20:06:27 +01:00
name=xorg-libpciaccess
2024-02-05 06:58:12 +01:00
version=0.18
release=2
2022-10-18 12:04:03 +02:00
source=(https://www.x.org/releases/individual/lib/libpciaccess-$version.tar.xz)
2008-03-20 20:06:27 +01:00
build() {
prt-get isinst hwdata && PKGMK_LIBPCIA+=' -D pci-ids=hwdata'
meson setup libpciaccess-$version build $PKGMK_LIBPCIA \
2022-10-18 12:04:03 +02:00
--prefix=/usr \
--buildtype=plain \
--wrap-mode nodownload \
-D b_lto=true \
-D b_pie=true \
-D zlib=enabled
2022-10-18 12:04:03 +02:00
meson compile -C build
DESTDIR=$PKG meson install -C build
2008-03-20 20:06:27 +01:00
}