summarylogtreecommitdiffstats
path: root/PKGBUILD
blob: 8de29cdde0fdb5ea687550dec86a250bd78d73a9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
# Maintainer: Lari Tikkanen <lartza@wippies.com>
pkgname=tint3-cpp-git
pkgver=0.3.0.r250.gde716c5
pkgrel=1
pkgdesc="A C++ rewrite attempt of the tint2 panel."
arch=('i686' 'x86_64' 'armv7h')
url="https://github.com/jmc-88/tint3"
license=('GPL2')
depends=('imlib2' 'pango' 'libxinerama' 'libxrandr' 'libxcomposite' 'startup-notification' 'hicolor-icon-theme' 'curl' 'libxdamage')
makedepends=('git' 'cmake' 'pandoc' 'xorg-server-xvfb' 'xorg-xauth')
source=('tint3::git+https://github.com/jmc-88/tint3.git')
sha256sums=('SKIP')

pkgver() {
  cd "$srcdir/tint3"
  git describe --long | sed 's/^v//;s/\([^-]*-g\)/r\1/;s/-/./g'
}

build() {
  cd "$srcdir/tint3"
  cmake -DCMAKE_INSTALL_PREFIX=/usr .
  make
}

package() {
  make -C "$srcdir/tint3" DESTDIR="$pkgdir" install
}