mirror of
https://gitdl.cn/https://github.com/chakralinux/desktop.git
synced 2025-01-24 02:22:13 +08:00
36 lines
954 B
Bash
36 lines
954 B
Bash
pkgname=grub2-editor
|
|
_pkgname=kcm-grub2
|
|
pkgver=0.8.1
|
|
pkgrel=1
|
|
pkgdesc="A control module for configuring the GRUB2 bootloader from System Settings."
|
|
arch=('x86_64')
|
|
url="https://github.com/maz-1/grub2-editor/"
|
|
screenshot="http://ksmanis.files.wordpress.com/2013/10/kcm_grub451.png"
|
|
license=('GPL3')
|
|
depends=('kcoreaddons' 'ki18n' 'kauth' 'kconfigwidgets' 'kio' 'solid'
|
|
'imagemagick' 'hwinfo' 'librsvg' 'grub' 'os-prober')
|
|
makedepends=('extra-cmake-modules' 'kdoctools' 'cmake')
|
|
groups=('system')
|
|
source=("https://github.com/maz-1/grub2-editor/archive/$pkgver.tar.gz")
|
|
md5sums=('a25c23268959c973355cf8bcc7d41c1f')
|
|
|
|
build() {
|
|
mkdir -p build
|
|
cd build
|
|
|
|
cmake ../$pkgname-$pkgver \
|
|
-DCMAKE_BUILD_TYPE=Release \
|
|
-DCMAKE_INSTALL_PREFIX=/usr \
|
|
-DSYSCONF_INSTALL_DIR=/etc \
|
|
-DBUILD_TESTING=OFF \
|
|
-DKDE_INSTALL_USE_QT_SYS_PATHS=ON \
|
|
-DLIB_INSTALL_DIR=lib
|
|
make
|
|
}
|
|
|
|
package() {
|
|
cd build
|
|
|
|
make DESTDIR=$pkgdir install
|
|
}
|