moved lots to gui

This commit is contained in:
Ella-0 2021-07-31 12:22:16 +00:00
parent 71b5f9a679
commit 685fe1f01b
48 changed files with 0 additions and 0 deletions

30
gui/libdrm/build.sh Normal file
View file

@ -0,0 +1,30 @@
pkgver=2.4.106
pkgname=libdrm
dep="libpciaccess"
bad=""
ext="dev"
fetch() {
curl -L "https://dri.freedesktop.org/libdrm/libdrm-$pkgver.tar.xz" -o $pkgname-$pkgver.tar.gz
tar -xf $pkgname-$pkgver.tar.gz
}
build() {
cd $pkgname-$pkgver
meson build --prefix /usr
samu -C build
}
package() {
cd $pkgname-$pkgver
DESTDIR=$pkgdir samu -C build install
}
package_dev() {
cd $pkgname-$pkgver
DESTDIR=$pkgdir samu -C build install
}
license() {
cat ../COPYING
}