blob: ea543c43334645242e90190c06b54127780045cf (
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
29
|
# Maintainer: chun-awa <chun-awa@outlook.com>
# Maintainer: Intro <intro-iu@outlook.com>
pkgname=lingmo-wallpapers
arch=("x86_64")
depends=()
makedepends=("extra-cmake-modules")
pkgdesc="Built-in wallpapers for LingmoOS."
pkgrel=1
pkgver=3.0.0_rc1
url="https://lingmo.org"
license=("GPL")
source=("https://github.com/LingmoOS/${pkgname}/archive/refs/tags/${pkgver//_/-}.tar.gz")
sha256sums=('32d6478cb365158aa96d79eff150e5f39c3ff66366b2177cecc84b63aae7a3d8')
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
}
|