desktop/kcm-grub2-editor/PKGBUILD

36 lines
954 B
Bash
Raw Normal View History

pkgname=grub2-editor
_pkgname=kcm-grub2
2016-02-02 03:51:37 +08:00
pkgver=0.7.0
2016-02-02 20:13:12 +08:00
pkgrel=2
pkgdesc="A control module for configuring the GRUB2 bootloader from System Settings."
2013-10-12 23:37:06 +08:00
arch=('x86_64')
2016-02-02 20:13:12 +08:00
url="https://github.com/maz-1/grub2-editor/"
2013-10-12 23:37:06 +08:00
screenshot="http://ksmanis.files.wordpress.com/2013/10/kcm_grub451.png"
2012-01-28 11:17:27 +08:00
license=('GPL3')
depends=('kcoreaddons' 'ki18n' 'kauth' 'kconfigwidgets' 'kio' 'solid'
'imagemagick' 'hwinfo' 'librsvg' 'grub' 'os-prober')
makedepends=('extra-cmake-modules' 'kdoctools')
groups=('system')
2016-02-02 03:51:37 +08:00
source=("https://github.com/maz-1/grub2-editor/archive/${pkgver}.tar.gz")
md5sums=('d48dfa4d3e75cc031ea7555d746ae3ed')
build() {
2012-01-28 11:17:27 +08:00
mkdir -p build
cd build
2016-02-02 03:51:37 +08:00
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
}