moved wayland stuff to gui

This commit is contained in:
Ella-0 2021-07-31 12:42:11 +00:00
parent 6d8649e736
commit d2235a7fc5
2 changed files with 0 additions and 0 deletions

View file

@ -0,0 +1,24 @@
pkgname=wayland-protocols
pkgver=1.21
deps="pkgconf:wayland"
fetch() {
curl "https://wayland.freedesktop.org/releases/wayland-protocols-$pkgver.tar.xz" -o $pkgname-$pkgver.tar.xz
tar -xf $pkgname-$pkgver.tar.xz
}
build() {
cd $pkgname-$pkgver
./configure --prefix=/usr
make
}
package() {
cd $pkgname-$pkgver
make DESTDIR=$pkgdir install
}
license() {
cd $pkgname-$pkgver
cat COPYING
}