Created
January 27, 2020 11:25
-
-
Save navarroaxel/6e6eac246fcb4f56386330ac9f331739 to your computer and use it in GitHub Desktop.
[Archlinux] override latte-dock v0.9.8 with v0.9.8.1
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
pkgname=latte-dock | |
pkgver=0.9.8 | |
_pkgver=0.9.8.1 | |
pkgrel=1 | |
pkgdesc='Latte is a dock based on plasma frameworks that provides an elegant and intuitive experience for your tasks and plasmoids' | |
arch=('i686' 'x86_64') | |
url='https://cgit.kde.org/latte-dock.git/' | |
license=('GPL') | |
depends=('plasma-framework' 'plasma-desktop') | |
optdepends=('libunity: quicklists, counters, and progress bars for apps using libunity') | |
makedepends=('git' 'cmake' 'extra-cmake-modules' 'python') | |
conflicts=('latte-dock') | |
provides=('latte-dock') | |
source=(https://github.com/KDE/${pkgname}/archive/v${_pkgver}.tar.gz) | |
sha256sums=('bd6f56c40dc90dca7970e100ff90795895585aa96ddcb3cb68ec9de1797dd98e') | |
build() { | |
cd ${srcdir}/${pkgname}-${_pkgver} | |
mkdir build && cd build | |
cmake -DCMAKE_INSTALL_PREFIX=/usr \ | |
-DKDE_L10N_BRANCH=trunk \ | |
-DKDE_L10N_AUTO_TRANSLATIONS=OFF \ | |
-DCMAKE_BUILD_TYPE=Release .. | |
} | |
package() { | |
make -C ${srcdir}/${pkgname}-${_pkgver}/build DESTDIR=${pkgdir} install | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment