summarylogtreecommitdiffstats
path: root/PKGBUILD
blob: 141c4a1d0cbb5fdbb7aec0934895508afec2e347 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
# Maintainer: chun-awa <chun-awa@outlook.com>
# Maintainer: Intro <intro-iu@outlook.com>
pkgname=lingmo-cursor-themes
arch=("x86_64")
depends=()
makedepends=("extra-cmake-modules")
pkgdesc="Lingmo OS Cursor Themes"
pkgrel=1
pkgver=2.0.2
url="https://lingmo.org"
license=("GPL")
source=("https://github.com/LingmoOS/${pkgname}/archive/refs/tags/${pkgver}.tar.gz")
sha256sums=('992ab7b8a66beb3c019f630d9f3285c9ab2360511d5bc1af484dca43f0a114a1')

prepare() {
    cd "${srcdir}/${pkgname}-${pkgver}"
    mkdir -p build
}

build() {
    cd "${srcdir}/${pkgname}-${pkgver}/build"
    cmake -DCMAKE_INSTALL_PREFIX=/usr ..
    make
}
package() {
    cd ${pkgname}-${pkgver}/build
    make DESTDIR="${pkgdir}" install
}