You are not logged in.
Hello, I'm new to AUR, and hope not to break any rules here.
I found the PKGBUILD of osd-lyrics (http://aur.archlinux.org/packages.php?ID=30489) has been out of date for a significant period, so I modified the PKGBUILD by myself, and tested it on my x86_64 laptop.
The PKGBUILD was contributed by Xiang Yixiang as described in it, so I email him these two files at night, 31 March, 2010 (SGT). However, I haven't gotten any response from him.
So I decide to post them here first, to see is there any issue around. Besides, can you please help me to debug these files (if any).
btw, the osd-lyrics-svn (http://aur.archlinux.org/packages.php?ID=30488) still works fine for me.
Ref: http://code.google.com/p/osd-lyrics/wiki/Build, http://code.google.com/p/osd-lyrics/wiki/FAQ
PKGBUILD
# Maintainer: Mark, Huo Mian <markhuomian[at]gmail[dot]com>
# Contributor: Xiang Yixiang <lovelinux229[at]gmail[dot]com>
# Edited by: Mark, Huo Mian <markhuomian[at]gmail[dot]com> 31Mar2010
pkgname=osd-lyrics
_realname=osdlyrics
pkgver=0.3.20100330
pkgrel=1
pkgdesc="An OSD lyric show supporting multiple media players and downloading."
arch=('i686' 'x86_64')
url="http://code.google.com/p/osd-lyrics/"
license=('GPL3')
depends=('gtk2' 'dbus-glib' 'curl' 'libnotify' 'libmpd')
makedepends=('pkgconfig')
conflicts=('osd-lyrics-svn')
install='osd-lyrics.install'
source=(http://osd-lyrics.googlecode.com/files/$_realname-$pkgver.tar.gz)
md5sums=("ae916d7510e8eb40238b3930263f9879")
_amarok1=false
_mpd=false
_xmms2=false
if [ "$_mpd" = "false" ]; then
depends=('gtk2' 'dbus-glib' 'curl' 'libnotify')
fi
build() {
cd "$srcdir/$_realname-$pkgver"
aclocal || return 1
autoconf || return 1
automake --add-missing || return 1
if [ "$_amarok1" = "true" ]; then
configure="$configure --enable-amarok1"
fi
if [ "$_mpd" = "false" ]; then
configure="$configure --disable-mpd"
fi
if [ "$_xmms2" = "false" ]; then
configure="$configure --disable-xmms2"
fi
./configure --prefix=/usr $configure || return 1
make || return 1
make DESTDIR="$pkgdir/" install || return 1
}
# vim:set ts=2 sw=2 et:osd-lyrics.install update icon cache
# Maintainer: Mark, Huo Mian <markhuomian[at]gmail[dot]com>
# Contributor: Mark, Huo Mian <markhuomian[at]gmail[dot]com>
post_install() {
gtk-update-icon-cache /usr/share/icons/hicolor
#xdg-icon-resource forceupdate --theme hicolor
}
post_upgrade() {
post_install
}
post_remove() {
post_install
}Last edited by timefairy (2010-04-02 05:22:26)
Offline
As far as the maintainer goes, the package is orphaned in the AUR so he probably does not want to maintain it anymore. That being the case, you should feel free to upload the package to the AUR yourself if you want.
Oh, and while I didn't actually install the package, a quick look over your PKGBUILD doesn't show any major problems to me.
Offline
A reply from Xiang Yixiang:
你好 最近在忙,网络不怎么方便,没怎么查阅邮件(手机上回你的),这么晚回复你,实在不好意思。这个软件现在是孤儿包了,你可以收养它,然后你就可以更新它了。如果要等到我来更新的话,估计要等一段时间了,抱歉了,感谢你这么热情:-)
Translation:
Hello, I'm busy recently, and my network isn't well, so I rarely check the email (reply on my phone). I'm sorry that I reply so late. The package is a orphan now, you can adopt it, and then update it. If waiting for my update, I'm afraid it will take more time. Thank you for your passion :-)
He is busy now. And I can update the package if I wish. So, I'll upload it to AUR.
Feel free to notify me, it's my first time work with AUR ![]()
Last edited by timefairy (2010-04-02 05:05:30)
Offline
well, i'm gonna go ahead and say i have no idea what that reply says. Maybe you could help with the translation?
edit: nevermind, i got the gist of it from google translate. You should go ahead and adopt the package in the AUR and update it.
Last edited by evr (2010-04-02 05:00:16)
Offline
Adopted, updated on AUR.
btw, md5sum changed: (already changed on AUR)
md5sums=('5e4657793a169925f74709e066b8d31b')But I found no news from Google Code, and the version still marked as 0.3.20100330-1
Offline