~alpine/devel

This thread contains a patchset. You're looking at the original emails, but you may wish to use the patch review UI. Review patch
2 2

[alpine-devel] [PATCH] new aport:moc

ScrumpyJack <scrumpyjack@me.com>
Details
Message ID
<alpine.LNX.2.20.1505201620370.12656@st.ilet.to>
Sender timestamp
1432138907
DKIM signature
missing
Download raw message
Patch: +64 -0
MOC is a console audio player

---
 testing/moc/APKBUILD | 64 ++++++++++++++++++++++++++++++++++++++++++++++++++++
 1 file changed, 64 insertions(+)
 create mode 100644 testing/moc/APKBUILD

diff --git a/testing/moc/APKBUILD b/testing/moc/APKBUILD
new file mode 100644
index 0000000..6b70518
--- /dev/null
+++ b/testing/moc/APKBUILD
@@ -0,0 +1,64 @@
# Contributor: ScrumpyJack <scrumpyjack@me.com>
# Maintainer:
pkgname=moc
pkgver=2.5.0
pkgrel=0
pkgdesc="MOC is a console audio player"
url="http://moc.daper.net/"
arch="all"
license="GPL"
depends=""
depends_dev=""
makedepends="curl-dev libtool file ffmpeg-dev speex-dev alsa-lib-dev
             libmodplug-dev faad2-dev jack-dev libmad-dev ncurses-dev"
install=""
subpackages="$pkgname-doc"
source="http://ftp.daper.net/pub/soft/moc/stable/moc-${pkgver}.tar.bz2"

_builddir="${srcdir}/${pkgname}-${pkgver}"
prepare() {
	local i
	cd "$_builddir"
	for i in $source; do
		case $i in
		*.patch) msg $i; patch -p1 -i "$srcdir"/$i || return 1;;
		esac
	done
}

build() {
	cd "$_builddir"
        ./configure \
            --build=$CBUILD \
            --host=$CHOST \
            --prefix=/usr \
            --without-rcc \
            --with-oss \
            --with-alsa \
            --with-jack \
            --with-aac \
            --with-mp3 \
            --with-musepack \
            --with-vorbis \
            --with-flac \
            --with-wavpack \
            --with-sndfile \
            --with-modplug \
            --with-ffmpeg \
            --with-speex \
            --with-samplerate \
            --with-curl  \
            --disable-cache \
            --disable-debug \
            || return 1
          make || return 1
}

package() {
	cd "$_builddir"
        make DESTDIR="${pkgdir}" install
}

md5sums="18e3a979b67091bfee4b62217908c473  moc-2.5.0.tar.bz2"
sha256sums="d29ea52240af76c4aa56fa293553da9d66675823e689249cee5f8a60657a6091  moc-2.5.0.tar.bz2"
sha512sums="ca6cfd4d1d13030bd561df8ab671399a17dfb675c360ecc95a2491c6a85764d0f72259ac33665405b197f370f4fd7ef59d9a485706f8a882bff30d0fafcf252c  moc-2.5.0.tar.bz2"
-- 
2.4.1




---
Unsubscribe:  alpine-devel+unsubscribe@lists.alpinelinux.org
Help:         alpine-devel+help@lists.alpinelinux.org
---
Andrew Hills <ahills@ednos.net>
Details
Message ID
<20150528125218.GA5046@ataiki>
In-Reply-To
<alpine.LNX.2.20.1505201620370.12656@st.ilet.to> (view parent)
Sender timestamp
1432817538
DKIM signature
missing
Download raw message
On Wed, May 20, 2015 at 04:21:47PM +0000, ScrumpyJack wrote:
> +build() {
> +	cd "$_builddir"
> +        ./configure \
> +            --build=$CBUILD \
> +            --host=$CHOST \
> +            --prefix=/usr \
> +            --without-rcc \
> +            --with-oss \
> +            --with-alsa \
> +            --with-jack \
> +            --with-aac \
> +            --with-mp3 \
> +            --with-musepack \
> +            --with-vorbis \
> +            --with-flac \
> +            --with-wavpack \
> +            --with-sndfile \
> +            --with-modplug \
> +            --with-ffmpeg \
> +            --with-speex \
> +            --with-samplerate \
> +            --with-curl  \
> +            --disable-cache \
> +            --disable-debug \
> +            || return 1
> +          make || return 1
> +}

Thanks for this APKBUILD; however, at least on 3.2, I'm unable to complete
the configure step, as it fails very early:

checking build system type... Invalid configuration `x86_64-alpine-linux-musl': machine `x86_64-alpine-linux' not recognized

This is from config.sub:324, which tests $basic_machine and matches *-*-*.
I suppose the best solution here is to patch config.sub to explicitly
consider linux-musl in lines 126-129... of course, this is just one more
argument against autoconf, but perhaps upstream could be convinced to use
a more modern version than whatever was around in November of 2009. How
did you get this to build?



---
Unsubscribe:  alpine-devel+unsubscribe@lists.alpinelinux.org
Help:         alpine-devel+help@lists.alpinelinux.org
---
Natanael Copa <ncopa@alpinelinux.org>
Details
Message ID
<20150528155508.697035a0@ncopa-desktop.alpinelinux.org>
In-Reply-To
<20150528125218.GA5046@ataiki> (view parent)
Sender timestamp
1432821308
DKIM signature
missing
Download raw message
On Thu, 28 May 2015 08:52:18 -0400
Andrew Hills <ahills@ednos.net> wrote:

> On Wed, May 20, 2015 at 04:21:47PM +0000, ScrumpyJack wrote:
> > +build() {
> > +	cd "$_builddir"
> > +        ./configure \
> > +            --build=$CBUILD \
> > +            --host=$CHOST \
> > +            --prefix=/usr \
> > +            --without-rcc \
> > +            --with-oss \
> > +            --with-alsa \
> > +            --with-jack \
> > +            --with-aac \
> > +            --with-mp3 \
> > +            --with-musepack \
> > +            --with-vorbis \
> > +            --with-flac \
> > +            --with-wavpack \
> > +            --with-sndfile \
> > +            --with-modplug \
> > +            --with-ffmpeg \
> > +            --with-speex \
> > +            --with-samplerate \
> > +            --with-curl  \
> > +            --disable-cache \
> > +            --disable-debug \
> > +            || return 1
> > +          make || return 1
> > +}
> 
> Thanks for this APKBUILD; however, at least on 3.2, I'm unable to complete
> the configure step, as it fails very early:
> 
> checking build system type... Invalid configuration `x86_64-alpine-linux-musl': machine `x86_64-alpine-linux' not recognized
> 
> This is from config.sub:324, which tests $basic_machine and matches *-*-*.
> I suppose the best solution here is to patch config.sub to explicitly
> consider linux-musl in lines 126-129... of course, this is just one more
> argument against autoconf, but perhaps upstream could be convinced to use
> a more modern version than whatever was around in November of 2009. How
> did you get this to build?

we normally solve this with:

prepare() {
	update_config_sub || return 1
	...
}

-nc


---
Unsubscribe:  alpine-devel+unsubscribe@lists.alpinelinux.org
Help:         alpine-devel+help@lists.alpinelinux.org
---
Reply to thread Export thread (mbox)