lots of updates

This commit is contained in:
Ella-0 2021-01-31 11:09:14 +00:00
parent 872362f202
commit c89aa236bd
45 changed files with 5388 additions and 74 deletions

View file

@ -0,0 +1,23 @@
pkgname=wayland-protocols
pkgver=1.20
fetch() {
curl "https://wayland.freedesktop.org/releases/wayland-protocols-1.20.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
}