core/wayland-protocols/PKGBUILD

31 lines
788 B
Bash
Raw Normal View History

2017-10-29 09:09:43 +08:00
# Contributions from Arch:
# Maintainer: Sébastien Luttringer <seblu@seblu.net>
pkgname=wayland-protocols
2017-10-29 09:09:43 +08:00
pkgver=1.11
pkgrel=1
pkgdesc='Specifications of extended Wayland protocols'
arch=('any')
url='http://wayland.freedesktop.org'
license=('MIT')
makedepends=('wayland')
source=("https://wayland.freedesktop.org/releases/$pkgname-$pkgver.tar.xz"{,.sig})
2017-10-29 09:09:43 +08:00
sha1sums=('2870a628fc0035c9932dd6475f04976bf86f2933'
'SKIP')
2017-10-29 09:09:43 +08:00
validpgpkeys=('8307C0A224BABDA1BABD0EB9A6EEEC9E0136164A' # Jonas Ådahl
'A66D805F7C9329B4C5D82767CCC4F07FAC641EFF') # Daniel Stone
build() {
cd $pkgname-$pkgver
./configure --prefix=/usr
make
}
package() {
cd $pkgname-$pkgver
make DESTDIR="$pkgdir" install
install -Dm 644 COPYING "$pkgdir/usr/share/licenses/$pkgname/COPYING"
}