|
发表于 2007-6-11 21:46:44
|
显示全部楼层
mac的源果然没有了。
此pkgbuild好像只是mac插件,没有cue的吧。。- # This is an example PKGBUILD file. Use this as a start to creating your own,
- # and remove these comments. For more information, see 'man PKGBUILD'.
- # NOTE: Please fill out the license field for your package! If it is unknown,
- # then please put 'unknown'.
- # Contributor:
- pkgname=audacious-cueinfo
- pkgver=0.2.0
- pkgrel=1mgc
- pkgdesc="Audacious CUE info Plugin"
- arch=(i686)
- url="http://www.magiclinux.org/people/jiangtao9999/audacious/"
- license=('GPL')
- depends=('audacious-player')
- makedepends=('rpmextract')
- source=(http://www.magiclinux.org/people/jiangtao9999/audacious/$pkgname-$pkgver-$pkgrel.src.rpm)
- md5sums=('abba9354825dcdceec0d474fb03552a3')
- build() {
- cd $startdir/src/
- rpmextract.sh ./audacious-cueinfo-0.2.0-1mgc.src.rpm
- tar -xvf bmp-cueinfo-0.2.0.tar.bz2
- cd $startdir/src/bmp-cueinfo-0.2.0
- patch -p1 < ../audacious-cueinfo-0.2.0.diff
- ./configure --prefix=/usr
- make || return 1
- make DESTDIR=$startdir/pkg install
- }
复制代码 |
|