summaryrefslogtreecommitdiff
path: root/pcr-testing
diff options
context:
space:
mode:
authorbill-auger <mr.j.spam.me@gmail.com>2017-09-24 14:06:00 -0400
committerbill-auger <mr.j.spam.me@gmail.com>2017-09-24 14:10:00 -0400
commit07b1cf7ebd7b030b292d75f1d41d921c535d4148 (patch)
treeee3fb4d7ad6132b42c62fe5b0f5190212b9174d3 /pcr-testing
parentfe9a2a12411dac8b9ad8017e6b07115b4402be5c (diff)
add calamares
Diffstat (limited to 'pcr-testing')
-rw-r--r--pcr-testing/calamares/PKGBUILD40
1 files changed, 40 insertions, 0 deletions
diff --git a/pcr-testing/calamares/PKGBUILD b/pcr-testing/calamares/PKGBUILD
new file mode 100644
index 000000000..00b8cf132
--- /dev/null
+++ b/pcr-testing/calamares/PKGBUILD
@@ -0,0 +1,40 @@
+# Maintainer: bill-auger <bill-auger@programmer.net>
+
+
+pkgname=calamares
+pkgver=3.1.0
+pkgrel=3
+pkgdesc='Distribution-independent installer framework - Parabola edition'
+arch=('i686' 'x86_64')
+license=('GPL')
+url="https://calamares.io/"
+
+depends=('boost-libs' 'dmidecode' 'gptfdisk' 'hwinfo' 'kconfig' 'kcoreaddons' 'ki18n'
+ 'kparts' 'kpmcore' 'polkit-qt5' 'python' 'squashfs-tools' 'solid' 'qt5ct'
+ 'qt5-styleplugins' 'qt5-svg' 'yaml-cpp')
+makedepends=('boost' 'extra-cmake-modules' 'git' 'qt5-tools')
+
+_git_tag="${pkgver}-parabola-alpha${pkgrel}"
+source=("https://notabug.org/bill-auger/calamares/archive/v${_git_tag}.tar.gz")
+# sha256sums=('6ae55f567d5eafdb781dc84988dec184637fa7cf8bd55d7a2157b2d920880d52') # alpha1
+# sha256sums=('a118ad28e7fd9b9b9603a7b79374c7e7d5c6ca9d41d6ba06137db94cdce05e5c') # alpha2
+sha256sums=('7a6ccf64ce7f56527a99e0eee1c46d698308c6f5bcabac9813c9151c48bd17f6') # alpha3
+
+
+build() {
+ mkdir -p ${srcdir}/calamares/build
+ cd ${srcdir}/calamares/build
+ cmake -DCMAKE_BUILD_TYPE=Debug \
+ -DCMAKE_INSTALL_PREFIX=/usr \
+ -DCMAKE_INSTALL_LIBDIR=lib \
+ -DWITH_CRASHREPORTER=OFF \
+ -DSKIP_MODULES="dracut dracutlukscfg dummycpp dummyprocess dummypython \
+ dummypythonqt grubcfg initramfs initramfscfg \
+ interactiveterminal license luksbootkeyfile \
+ luksopenswaphookcfg plymouthcfg removeuser webview" ..
+}
+
+package() {
+ cd ${srcdir}/calamares/build
+ make DESTDIR="$pkgdir" install
+}