blob: 221a7b11fd69317c0657a0ff542b081676f83e56 (
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
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
|
# $Id: PKGBUILD 87221 2013-03-28 18:43:22Z alucryd $
# Maintainer: Maxime Gauduin <alucryd@gmail.com>
# Contributor: Tofe <chris.chapuis@gmail.com>
# Contributor: erm67 <erm67@yahoo.it>
pkgname=cairo-dock
pkgver=3.2.0
pkgrel=1
pkgdesc="Light eye-candy fully themable animated dock"
arch=('i686' 'x86_64')
url="https://launchpad.net/cairo-dock-core"
license=('GPL')
groups=('cairo-dock')
depends=('curl' 'dbus-glib' 'gtk3' 'gtkglext' 'librsvg')
makedepends=('cmake' 'curl' 'dbus-glib' 'gtk3' 'gtkglext' 'inputproto' 'librsvg')
options=('!libtool')
source=("http://launchpad.net/${pkgname}-core/3.2/${pkgver}/+download/${pkgname}-${pkgver}.tar.gz" 'gldit-rpath.patch')
sha256sums=('69d57dab16e70bb0683ba91f1dfd19a9ee0de0b1642ca6480fef9dacbb9c2fd2'
'5a5fbc67aaa210387ef4410701747fe741942c99c4bd84ae771b96a3bdd1c4cc')
build() {
cd "${srcdir}"/${pkgname}-${pkgver}
# Patch
patch -Np1 -i ../gldit-rpath.patch
sed -i 's|themes3.2|themes|' CMakeLists.txt
# Build
if [[ -d build ]]; then
rm -rf build
fi
mkdir build && cd build
cmake .. -DCMAKE_INSTALL_PREFIX=/usr
make
}
package_cairo-dock() {
cd "${srcdir}"/${pkgname}-${pkgver}/build
# Install
make DESTDIR="${pkgdir}" install
}
# vim: ts=2 sw=2 et:
|