blob: c7b93ea4a971e274ba71311b22434889b56c8386 (
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-sddm-theme
arch=("x86_64")
depends=("sddm")
makedepends=("extra-cmake-modules")
pkgdesc="SDDM theme for LingmoOS"
pkgrel=1
pkgver=2.7.0
url="https://lingmo.org"
license=("GPL")
source=("https://github.com/LingmoOS/${pkgname}/archive/refs/tags/${pkgver}.tar.gz")
sha256sums=('ddd7f97ac3be1de534ea479d3a2ac61bf64e9ff773baebd774dd51c8faea08f9')
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
}
|