Skip to content

Instantly share code, notes, and snippets.

@daroczig
Created September 18, 2013 13:39
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save daroczig/6609282 to your computer and use it in GitHub Desktop.
Save daroczig/6609282 to your computer and use it in GitHub Desktop.
PKGBUILD for kdeplasma-applets-applicationname
# Maintainer: Andrea Scarpino <andrea@archlinux.org>
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