2021-01-31 11:09:14 +00:00
|
|
|
pkgname=wayland-protocols
|
|
|
|
pkgver=1.20
|
2021-04-08 17:38:36 +00:00
|
|
|
deps="pkgconf:wayland"
|
2021-01-31 11:09:14 +00:00
|
|
|
|
|
|
|
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
|
|
|
|
}
|