You are not logged in.
Pages: 1
Any chance to make and include this package to the repositories? I gave up trying to make it myself, and besides, it would be way better if it gets into the official repositories anyway. Here's a PKGBUILD that doesn't work
pkgname=xmms-mp3cue
pkgver=0.94
pkgrel=1
pkgdesc="Cue file support for XMMS"
url="http://brianvictor.tripod.com/mp3cue.htm"
depends=('xmms')
makedepends=()
conflicts=()
replaces=()
backup=()
install=
source=(http://brianvictor.tripod.com/XMMS-mp3cue-$pkgver.tar.gz)
md5sums=(d6f93194a60a2d9e8985e3939777c1c6)
build() {
cd $startdir/src/XMMS-mp3cue-$pkgver
./configure --prefix=/usr
make || return 1
make prefix=$startdir/pkg/usr install
}
Offline
I got a tip from a dp's post... this PKGBUILD works:
# Contributor: Mitja Vardjan <mvardjan_[at]_volja _dot_ net>
pkgname=xmms-mp3cue
pkgver=0.94
pkgrel=1
pkgdesc="Cue file support for XMMS"
url="http://brianvictor.tripod.com/mp3cue.htm"
depends=('xmms')
makedepends=()
conflicts=()
replaces=()
backup=()
install=
source=(http://brianvictor.tripod.com/XMMS-mp3cue-$pkgver.tar.gz)
md5sums=(d6f93194a60a2d9e8985e3939777c1c6)
build() {
cd $startdir/src/XMMS-mp3cue-$pkgver
./configure --prefix=$startdir/pkg/usr
make || return 1
make INSTALLPATH=$startdir/pkg/usr/lib/xmms/General install
}
I finally got all my software installed as packages
Offline
happy to hear, that my post was helpfull
...
one comment to your PKGBUILD's:
please include
# Contributor: Your Name <your@email>
as first line to be honored as Contributor
The impossible missions are the only ones which succeed.
Offline
Is this really necessary? I get enough spam already. Could I leave out the email address or at least write it in form of something like:
username *at* mail *dot* com
Offline
no, it's not necessary, but it would be nice to stay informed who was the contributor and who invested time to search for the infos
have a look at the cvs of the pkgs in the official repos if you want examples:
http://www.archlinux.org/packages.php?o … lastupdate
just click on a pkgname and then on [View CVS entries] and then the revision number (1.5 or so) to see the entry
if you dont want to post it here in the form the normal format, use _dot_ and _[at]_
about spam: have a look at spamassassin http://www.spamassassin.org/ (exists as arch-pkg)
The impossible missions are the only ones which succeed.
Offline
I edited the PKGBUILD I had posted before.
Spamassassin is ok, but for some things there is just no possible solution, like if you want to receive immediate notification on your mobile phone when you receive mail - if you don't use your own mail server all you can do is to cancel forwarding to mobile phone or face SMS bombardment ... wow, have I wandered off topic ...
Offline
xmms-mp3cue added to official
it is also part of groups:
xmms-plugins
and
xmms-general-plugins
The impossible missions are the only ones which succeed.
Offline
Pages: 1