blob: 5b9c0af2e8bc1972e1e0dd04aaa8c624ddd2fc6c (
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
30
31
32
|
# Maintainer: chun-awa <chun-awa@outlook.com>
# Maintainer: Intro <intro-iu@outlook.com>
pkgname=lingmo-settings
arch=("x86_64")
depends=(
"qt5-base" "qt5-quickcontrols2" "qt5-x11extras" "freetype2"
"fontconfig" "networkmanager-qt" "modemmanager-qt5" "libqtxdg"
"lingmoui"
)
makedepends=("extra-cmake-modules")
pkgdesc="The system settings application for LingmoOS uses LingmoUI as the interface style."
pkgrel=2
pkgver=2.1.5
url="https://lingmo.org"
license=("GPL")
source=("https://github.com/LingmoOS/${pkgname}/archive/refs/tags/${pkgver}.tar.gz")
sha256sums=('fe747160a9aa44e29ff24fc7c1451d7cc25f8603aad890e232207978e84a2009')
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
}
|