diff options
author | root <root@rshg054.dnsready.net> | 2013-10-14 00:05:52 -0700 |
---|---|---|
committer | root <root@rshg054.dnsready.net> | 2013-10-14 00:05:52 -0700 |
commit | d053938d834e74b0c881c12a5cb240ad4bab0d9b (patch) | |
tree | 7226e0e5e490369e54507fc9af134ba48d5f2b16 /community/cairo-dock/PKGBUILD | |
parent | 39e9111d76d232d65ca0c43285dea5bd5d58d28e (diff) |
Mon Oct 14 00:05:51 PDT 2013
Diffstat (limited to 'community/cairo-dock/PKGBUILD')
-rwxr-xr-x | community/cairo-dock/PKGBUILD | 23 |
1 files changed, 8 insertions, 15 deletions
diff --git a/community/cairo-dock/PKGBUILD b/community/cairo-dock/PKGBUILD index 8f910fe66..e3968e4b2 100755 --- a/community/cairo-dock/PKGBUILD +++ b/community/cairo-dock/PKGBUILD @@ -1,11 +1,11 @@ -# $Id: PKGBUILD 88925 2013-04-24 21:20:34Z alucryd $ +# $Id: PKGBUILD 98550 2013-10-13 10:48:27Z alucryd $ # Maintainer: Maxime Gauduin <alucryd@gmail.com> # Contributor: Tofe <chris.chapuis@gmail.com> # Contributor: erm67 <erm67@yahoo.it> pkgname=cairo-dock -pkgver=3.2.1 -pkgrel=3 +pkgver=3.3.1 +pkgrel=1 pkgdesc="Light eye-candy fully themable animated dock" arch=('i686' 'x86_64') url="https://launchpad.net/cairo-dock-core" @@ -14,30 +14,23 @@ depends=('curl' 'dbus-glib' 'gtk3' 'librsvg') makedepends=('cmake') optdepends=('cairo-dock-plugins: Plugins for Cairo-Dock') options=('!libtool') -source=("http://launchpad.net/${pkgname}-core/3.2/${pkgver}/+download/${pkgname}-${pkgver}.tar.gz" 'gldit-rpath.patch') -sha256sums=('441e407f92138dc604c796b0455777b765e298ecb8f3120104f521d0e0b34543' - '5a5fbc67aaa210387ef4410701747fe741942c99c4bd84ae771b96a3bdd1c4cc') - -prepare() { - cd "${srcdir}"/${pkgname}-${pkgver} - - patch -Np1 -i ../gldit-rpath.patch -} +source=("http://launchpad.net/${pkgname}-core/${pkgver%.?}/${pkgver}/+download/${pkgname}-${pkgver}.tar.gz") +sha256sums=('4d7c5c58606ac1e22dcbe6d80404e38d747c2c846102df09f25d5b97943f0459') build() { - cd "${srcdir}"/${pkgname}-${pkgver} + cd ${pkgname}-${pkgver} if [[ -d build ]]; then rm -rf build fi mkdir build && cd build - cmake .. -DCMAKE_INSTALL_PREFIX=/usr + cmake .. -DCMAKE_INSTALL_PREFIX='/usr' make } package() { - cd "${srcdir}"/${pkgname}-${pkgver}/build + cd ${pkgname}-${pkgver}/build make DESTDIR="${pkgdir}" install } |