diff options
author | Aqua-sama <aqua@iserlohn-fortress.net> | 2018-11-22 11:42:30 +0100 |
---|---|---|
committer | Aqua-sama <aqua@iserlohn-fortress.net> | 2018-11-22 11:42:30 +0100 |
commit | 830c1b67a4391bed3c959faef9bff33aca5f5423 (patch) | |
tree | 961378f6f724bb34490afc37dd6a70834d33af06 /linux/makepkg/PKGBUILD | |
parent | Add AboutPlugin dialog (diff) | |
download | smolbote-830c1b67a4391bed3c959faef9bff33aca5f5423.tar.xz |
Fix transparent background being enabled if Plasma is found
Diffstat (limited to 'linux/makepkg/PKGBUILD')
-rw-r--r-- | linux/makepkg/PKGBUILD | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/linux/makepkg/PKGBUILD b/linux/makepkg/PKGBUILD index fc3d16d..9a45114 100644 --- a/linux/makepkg/PKGBUILD +++ b/linux/makepkg/PKGBUILD @@ -36,7 +36,11 @@ prepare() { pkgver() { cd smolbote + # Without version tag echo r$(git rev-list --count HEAD)-$(git rev-parse --short HEAD) | sed 's/\([^-]*-g\)/r\1/;s/-/./g' + + # With version tag + #git describe --long | sed 's/\([^-]*-g\)/r\1/;s/-/./g' } build() { @@ -52,6 +56,9 @@ build() { # --auto-features=disabled - features should be explicitly enabled meson --buildtype=plain --prefix=/usr/local --auto-features=disabled $srcdir/build + # Run menuconfig + #KCONFIG_CONFIG=linux/.config menuconfig + cd $srcdir/build # Toggle features |