32 lines
770 B
Bash
32 lines
770 B
Bash
pkgname=hyprlang
|
|
pkgver=0.6.4
|
|
pkgdesc='implementation library for the hypr config language'
|
|
arch=(x86_64 aarch64)
|
|
homepage="https://github.com/hyprwm/$pkgname"
|
|
license=(BSD-3-Clause)
|
|
depends=(gcc-libs
|
|
glibc
|
|
hyprutils)
|
|
makedepends=(cmake)
|
|
sources=("${pkgname}-${pkgver}.tar.gz")
|
|
urls=("https://github.com/hyprwm/${pkgname}/archive/v${pkgver}.tar.gz")
|
|
md5sums=("001bcd7a043571b2d42891589027242e")
|
|
|
|
src_prepare() {
|
|
tar -xf ${distdir}/${sources[0]} --strip-components=1
|
|
}
|
|
|
|
src_build() {
|
|
cmake -B build \
|
|
-D CMAKE_INSTALL_PREFIX=/usr \
|
|
-D CMAKE_BUILD_TYPE=Release
|
|
cmake --build build
|
|
}
|
|
|
|
src_install() {
|
|
DESTDIR="$pkgdir" cmake --install build
|
|
install -Dm0644 -t "$pkgdir/usr/share/licenses/$pkgname" LICENSE
|
|
}
|
|
|
|
# vim:ft=sh syn=sh et sw=2:
|