Created
September 18, 2013 13:39
-
-
Save daroczig/6609282 to your computer and use it in GitHub Desktop.
PKGBUILD for kdeplasma-applets-applicationname
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
# Maintainer: Andrea Scarpino <[email protected]> | |
pkgname=kdeplasma-applets-applicationname | |
pkgver=1.7 | |
pkgrel=1 | |
pkgdesc="A QML plasmoid to display the application name of the focused window" | |
arch=('any') | |
url="https://github.com/ndr/applicationname-plasmoid" | |
license=('GPL') | |
depends=('kdebase-workspace') | |
makedepends=('cmake' 'automoc4') | |
replaces=('kdeplasma-applets-windowtitle') | |
source=(${pkgname}-${pkgver}.tar.gz::"https://github.com/ndr/applicationname-plasmoid/tarball/${pkgver}") | |
md5sums=('1d1191f90e9e0ed897eb33a89fedd9d3') | |
build() { | |
mkdir build | |
cd build | |
cmake ../scarpin0-applicationname-plasmoid-18437d0 \ | |
-DCMAKE_BUILD_TYPE=Release \ | |
-DCMAKE_INSTALL_PREFIX=$(kde4-config --prefix) | |
make | |
} | |
package() { | |
cd build | |
make DESTDIR="$pkgdir/" install | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment