add libpciaccess

This commit is contained in:
aheirman 2021-04-08 17:50:18 +00:00
parent 1cf9b0af34
commit 015ec48c73
2 changed files with 31 additions and 0 deletions

View File

@ -1,5 +1,6 @@
pkgver=2.4.103
pkgname=libdrm
dep="libpciaccess"
bad=""
ext="dev"

View File

@ -0,0 +1,30 @@
pkgname=libpciaccess
pkgver=master
fetch() {
curl "https://gitlab.freedesktop.org/xorg/lib/libpciaccess/-/archive/master/libpciaccess-master.tar.gz" -o $pkgname-$pkgver.tar.xz
tar -xf $pkgname-$pkgver.tar.xz
mkdir $pkgname-$pkgver/build
}
build() {
cd $pkgname-$pkgver
cd build
meson .. \
--buildtype=release \
--prefix=/usr \
--libexecdir=lib
samu
}
package() {
cd $pkgname-$pkgver
cd build
DESTDIR=$pkgdir samu install
}
license() {
cd $pkgname-$pkgver
# cat LICENSE
cat COPYING
}