diff options
Diffstat (limited to 'community/alltray/PKGBUILD')
-rw-r--r-- | community/alltray/PKGBUILD | 27 |
1 files changed, 27 insertions, 0 deletions
diff --git a/community/alltray/PKGBUILD b/community/alltray/PKGBUILD new file mode 100644 index 000000000..9ff9a652a --- /dev/null +++ b/community/alltray/PKGBUILD @@ -0,0 +1,27 @@ +# $Id: PKGBUILD 65283 2012-02-20 15:18:04Z spupykin $ +# Maintainer: Sergej Pupykin <pupykin.s+arch@gmail.com> +# Maintainer : James Rayner <iphitus@gmail.com> +# Contributor: Roberto Salas <ro0xito@gmail.com> + +pkgname=alltray +pkgver=0.7.5.1dev +pkgrel=1 +pkgdesc="Drops any app in the tray." +license=('GPL') +arch=('i686' 'x86_64') +url="http://alltray.trausch.us/" +depends=('libxpm' 'libgtop' 'libwnck') +options=('!libtool') +source=(https://code.launchpad.net/alltray/trunk/${pkgver}/+download/alltray-${pkgver}.tar.gz) +md5sums=('5842253b89a5943031b5a02bbd8fd4fb') + +build() { + cd ${srcdir}/${pkgname}-${pkgver} + ./configure --prefix=/usr + make +} + +package() { + cd ${srcdir}/${pkgname}-${pkgver} + make DESTDIR=${pkgdir} install +} |