diff options
Diffstat (limited to 'extra/nicotine/PKGBUILD')
-rw-r--r-- | extra/nicotine/PKGBUILD | 13 |
1 files changed, 10 insertions, 3 deletions
diff --git a/extra/nicotine/PKGBUILD b/extra/nicotine/PKGBUILD index 2c6f54a83..96cf743d5 100644 --- a/extra/nicotine/PKGBUILD +++ b/extra/nicotine/PKGBUILD @@ -1,15 +1,15 @@ -# $Id: PKGBUILD 108389 2011-01-30 22:14:15Z angvp $ +# $Id: PKGBUILD 144457 2011-12-06 06:35:08Z angvp $ # Maintainer: Angel Velasquez <angvp@archlinux.org> # Contributor: Hugo Doria <hugo@archlinux.org> # Contributor: Andrew Wright <andreww@photism.org> pkgname=nicotine pkgver=1.2.16 -pkgrel=2 +pkgrel=3 pkgdesc="Soulseek music-sharing client, written in python" license=('GPL') arch=('i686' 'x86_64' 'mips64el') -depends=('pygtk>=2.14.1' 'mutagen' 'python-geoip>=1.2.4') +depends=('pygtk>=2.14.1' 'mutagen') conflicts=(nicotine-plus) replaces=(nicotine-plus) url="http://sourceforge.net/projects/nicotine-plus/" @@ -18,6 +18,9 @@ optdepends=('python-sexy: To enable spell checking' 'python-geoip: to enable Geographical blocker') md5sums=('ac7433c21ef619a37e079a7ae68da94a') + + + build() { cd ${srcdir}/${pkgname}+-${pkgver} sed -i -e "s/Icon=nicotine-plus/Icon=nicotine-plus-32px/" files/nicotine.desktop # Fixing FS#22476 @@ -25,6 +28,10 @@ build() { cd trayicon python2 autogen.py make +} + +package() { + cd ${srcdir}/${pkgname}+-${pkgver}/trayicon make DESTDIR=${pkgdir} install ln -s nicotine.py ${pkgdir}/usr/bin/nicotine } |