iglunix/pkgs/wayland-protocols/build.sh

25 lines
398 B
Bash
Raw Normal View History

2021-01-31 11:09:14 +00:00
pkgname=wayland-protocols
2021-06-24 21:13:16 +00:00
pkgver=1.21
2021-04-08 17:38:36 +00:00
deps="pkgconf:wayland"
2021-01-31 11:09:14 +00:00
fetch() {
2021-06-24 21:13:16 +00:00
curl "https://wayland.freedesktop.org/releases/wayland-protocols-$pkgver.tar.xz" -o $pkgname-$pkgver.tar.xz
2021-01-31 11:09:14 +00:00
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
}