You are not logged in.

#1 2010-05-25 15:11:18

Drake
Member
Registered: 2007-09-05
Posts: 41

[Request] aTunes

Hi comunity,i have a Ipod nano (8gb).I was searching a good manager ipod & Music,I have gnome desktop.I tried Exaile,gtkpod,Rhythmbox,Banshee,etc. i have many problem with this aplication because some programs have problem with covers,order albums,conflict with artista,etc. there is a aTunes in AUR but is old,somebody can help me?? now the aTunes is 2.0.0,i read here is many problems with pkgbuild of aTunes 2.0.0.

http://aur.archlinux.org/packages.php?ID=13097

thanks

Offline

#2 2010-05-25 22:54:09

fukawi2
Ex-Administratorino
From: .vic.au
Registered: 2007-09-28
Posts: 6,224
Website

Re: [Request] aTunes

Have you e-mailed the maintainer? Posting a message to the AUR mailing list will likely solicit more feedback smile

(OT: Thanks for the heads up about the package, I hadn't heard of it... Looking at their website now smile)

Offline

#3 2010-05-31 13:53:58

SiD
Member
From: Germany
Registered: 2006-09-21
Posts: 729

Re: [Request] aTunes

I've made a PKGBUILD that installs aTunes to /opt/atunes/ and a script to /usr/bin/ which executes the aTunes.sh script in /opt/atunes

I use the jre java package. Don't know if mplayer is needed as dep. There is no .desktop file. I don'tknow how these files are working. wink


pkgname=atunes
pkgver=2.0.0
pkgrel=1
pkgdesc="A full-featured audio player and manager"
arch=('any')
url="http://www.atunes.org/"
license=('GPL')
depends=('jre' 'mplayer')
optdepends=('cdrkit: for ripping CDs via cdda2wav'
            'vorbis-tools: for ripping Ogg Vorbis via oggenc')
source=(http://downloads.sourceforge.net/atunes/aTunes_$pkgver.tar.gz atunes.sh)

build() {
  cd $srcdir/aTunes
  install -d -m 755 $pkgdir/opt/atunes
  install -d -m 755 $pkgdir/usr/bin
  install -m 755 $srcdir/atunes.sh $pkgdir/usr/bin/atunes
  cp -r * $pkgdir/opt/atunes/
  chmod +x $pkgdir/opt/atunes/aTunes.sh
}
md5sums=('716a25846bfc3f04b4c1aae9c538fbad'
         '4d71ef03e615ff4000393e3a770f5369')

save this as "atunes.sh" in the directory that contains the PKGBUILD.

#!/bin/sh

/opt/atunes/aTunes.sh

Offline

Board footer

Powered by FluxBB