diff options
author | root <root@rshg054.dnsready.net> | 2013-08-11 01:21:34 -0700 |
---|---|---|
committer | root <root@rshg054.dnsready.net> | 2013-08-11 01:21:34 -0700 |
commit | 18a41d682d6e91e0d28fce23eb75292f477bd620 (patch) | |
tree | bce8f660d7d0b6541cadbc49bf1bac2434e4c0c6 /community/cairo-dock-plugins/PKGBUILD | |
parent | 0ade1da67addf154d93c6a6399b0a3d5a18a3336 (diff) |
Sun Aug 11 01:21:31 PDT 2013
Diffstat (limited to 'community/cairo-dock-plugins/PKGBUILD')
-rwxr-xr-x | community/cairo-dock-plugins/PKGBUILD | 66 |
1 files changed, 0 insertions, 66 deletions
diff --git a/community/cairo-dock-plugins/PKGBUILD b/community/cairo-dock-plugins/PKGBUILD deleted file mode 100755 index d1ac36dd1..000000000 --- a/community/cairo-dock-plugins/PKGBUILD +++ /dev/null @@ -1,66 +0,0 @@ -# $Id: PKGBUILD 93867 2013-07-11 15:30:19Z alucryd $ -# Maintainer: Maxime Gauduin <alucryd@gmail.com> -# Contributor: Tofe <chris.chapuis@gmail.com> -# Contributor: zhuqin <zhuqin83@gmail.com> -# Contributor: tri1976 <trile7@gmail.com> -# Contributor: snoopy33 <snoopy33@no-log.org> - -pkgname=cairo-dock-plugins -pkgver=3.2.1 -pkgrel=4 -pkgdesc="Plugins for Cairo-Dock" -url="https://launchpad.net/cairo-dock" -license=('GPL') -arch=('i686' 'x86_64') -depends=('cairo-dock') -makedepends=('cmake' 'alsa-lib' 'fftw' 'gnome-menus' 'gtk-sharp-2' 'gvfs' 'libetpan' 'libexif' 'libical' 'libpulse' 'libxklavier' 'libzeitgeist' 'lm_sensors' 'ndesk-dbus-glib' 'python' 'python2' 'ruby' 'upower' 'vala' 'vte3' 'webkitgtk3') -optdepends=('alsa-lib: Sound Control, Sound Effects applets' - 'fftw: Impulse applet' - 'gnome-menus: Applications Menu applet' - 'gtk-sharp-2: Mono API' - 'gvfs: GVFS integration' - 'libetpan: Mail applet' - 'libexif: Slider applet' - 'libical: Clock applet' - 'libpulse: Impulse applet' - 'libxklavier: Keyboard Indicator applet' - 'libzeitgeist: Recent Events applet' - 'lm_sensors: System Monitor applet' - 'ndesk-dbus-glib: Mono API' - 'python: Python 3 API' - 'python2: Python 2 API' - 'ruby: Ruby API' - 'upower: Logout, PowerManager applets' - 'vte3: Terminal applet' - 'webkitgtk3: Weblets applet') -options=('!libtool') -source=("http://launchpad.net/cairo-dock-plug-ins/3.2/${pkgver}/+download/${pkgname}-${pkgver}.tar.gz" - 'python.patch') -sha256sums=('11b4433e40bbb1507757b23e167c521d620827576c2f30bb1a9642e0bff57e01' - 'f33ff6f2b93936c5050ae369d1b08c41bd17f5a2fb4ce46da5436d78d0b3fa8e') - -prepare() { - cd ${pkgname}-${pkgver} - - patch -Np1 -i ../python.patch -} - -build() { - cd ${pkgname}-${pkgver} - - if [[ -d build ]]; then - rm -rf build - fi - mkdir build && cd build - - cmake .. -DCMAKE_INSTALL_PREFIX=/usr - make -} - -package() { - cd ${pkgname}-${pkgver}/build - - make DESTDIR="${pkgdir}" install -} - -# vim: ts=2 sw=2 et: |