raven/pkg/makepkg/PKGBUILD
2022-07-17 23:17:12 +03:00

25 lines
579 B
Bash

pkgname=libraven
pkgver=r85.5663552
pkgrel=1
pkgdesc='The Raven user interface library'
url='https://git.hippoz.xyz/hippoz/raven'
source=("git+https://git.hippoz.xyz/hippoz/raven")
arch=('i686' 'pentium4' 'x86_64' 'arm' 'armv7h' 'armv6h' 'aarch64')
license=('MIT')
depends=('pango' 'cairo' 'libx11')
makedepends=('meson')
sha256sums=(SKIP)
pkgver() {
cd raven
printf "r%s.%s" "$(git rev-list --count HEAD)" "$(git rev-parse --short HEAD)"
}
build() {
arch-meson raven build
meson compile -C build
}
package() {
meson install -C build --destdir "$pkgdir"
}