X-Original-To: alpine-devel@lists.alpinelinux.org Delivered-To: alpine-devel@mail.alpinelinux.org Received: from alpinecoaster.easygiga.com (alpinecoaster.easygiga.com [80.74.147.13]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (No client certificate requested) by mail.alpinelinux.org (Postfix) with ESMTPS id 44231DC006A for ; Mon, 10 Mar 2014 10:09:35 +0000 (UTC) Received: (qmail 4364 invoked from network); 10 Mar 2014 11:09:34 +0100 Received: from unknown (HELO ?127.0.0.1?) (197.168.205.86) by alpinecoaster.easygiga.com with (DHE-RSA-AES256-SHA encrypted) SMTP; 10 Mar 2014 11:09:33 +0100 Message-ID: <531D8F58.8010406@sinux.ch> Date: Mon, 10 Mar 2014 12:09:28 +0200 From: Lionel Voirol User-Agent: Mozilla/5.0 (Windows NT 6.1; WOW64; rv:24.0) Gecko/20100101 Thunderbird/24.3.0 X-Mailinglist: alpine-devel Precedence: list List-Id: Alpine Development List-Unsubscribe: List-Post: List-Help: List-Subscribe: MIME-Version: 1.0 To: alpine-devel@lists.alpinelinux.org Subject: [alpine-devel] First build of ezstream package Content-Type: multipart/mixed; boundary="------------040403040708030604090703" X-Antivirus: avast! (VPS 140309-1, 2014/03/09), Outbound message X-Antivirus-Status: Clean This is a multi-part message in MIME format. --------------040403040708030604090703 Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Ezstream version 0.5.6 first package build --------------040403040708030604090703 Content-Type: text/plain; charset=windows-1252; name="0001-First-version-of-new-package-ezstream.patch" Content-Transfer-Encoding: 7bit Content-Disposition: attachment; filename="0001-First-version-of-new-package-ezstream.patch" >From 8636969b8ab66d9b76ac4aefa1bb8d37e926d258 Mon Sep 17 00:00:00 2001 From: Lionel Voirol Date: Mon, 10 Mar 2014 11:37:35 +0200 Subject: [PATCH] First version of new package ezstream --- testing/ezstream/APKBUILD | 35 +++++++++++++++++++++++++++++++++++ 1 file changed, 35 insertions(+) create mode 100644 testing/ezstream/APKBUILD diff --git a/testing/ezstream/APKBUILD b/testing/ezstream/APKBUILD new file mode 100644 index 0000000..ac1a5d4 --- /dev/null +++ b/testing/ezstream/APKBUILD @@ -0,0 +1,35 @@ +# Contributor: Lionel Voirol +# Maintainer: +pkgname=ezstream +pkgver=0.5.6 +pkgrel=0 +pkgdesc="Ezstream is a command line source client for Icecast media streaming servers." +url="http://www.icecast.org/ezstream.php" +arch="all" +license="GPL2" +depends="" +depends_dev="libshout-dev libxml2-dev libvorbis-dev" +makedepends="$depends_dev" +install="" +subpackages="" +source="http://downloads.xiph.org/releases/ezstream/ezstream-$pkgver.tar.gz" + +_builddir=$srcdir/$pkgname-$pkgver + +build() { + cd "$_builddir" + ./configure \ + --prefix=/usr \ + || return 1 + make || return 1 + +} + +package() { + cd "$_builddir" + make DESTDIR="$pkgdir" install || return 1 +} + +md5sums="1be68119d44fbe71454a901fa650a359 ezstream-0.5.6.tar.gz" +sha256sums="818b7ab2a498ffe6e59155279cb79ed0291c4979210e99af6dda950fe54a30c0 ezstream-0.5.6.tar.gz" +sha512sums="c9b22056612160b5d8a914abeea094dce83121378563307558af988438ad5b42e0e9b5434024f846b5e0151133b84e47fb11d54bf5df3ed9889aece82be9ef47 ezstream-0.5.6.tar.gz" -- 1.8.4.3 --------------040403040708030604090703-- --- Unsubscribe: alpine-devel+unsubscribe@lists.alpinelinux.org Help: alpine-devel+help@lists.alpinelinux.org ---