desktop/grub2-editor/PKGBUILD

36 lines
954 B
Bash
Raw Normal View History

pkgname=grub2-editor
_pkgname=kcm-grub2
pkgver=0.8.1
pkgrel=1
2016-02-02 20:13:12 +08:00
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' 'cmake')
groups=('system')
source=("https://github.com/maz-1/grub2-editor/archive/$pkgver.tar.gz")
md5sums=('a25c23268959c973355cf8bcc7d41c1f')
build() {
2012-01-28 11:17:27 +08:00
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
}