X-Original-To: alpine-devel@lists.alpinelinux.org Delivered-To: alpine-devel@mail.alpinelinux.org Received: from mail-qg0-f50.google.com (mail-qg0-f50.google.com [209.85.192.50]) (using TLSv1 with cipher ECDHE-RSA-RC4-SHA (128/128 bits)) (No client certificate requested) by mail.alpinelinux.org (Postfix) with ESMTPS id 1FC85DC08AE for ; Wed, 19 Nov 2014 10:18:40 +0000 (UTC) Received: by mail-qg0-f50.google.com with SMTP id e89so156543qgf.9 for ; Wed, 19 Nov 2014 02:18:40 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=from:to:cc:subject:date:message-id; bh=hVqg4EqZoaJ5j7eCn5Ey4MlEZAqveY1XS9BrtfPuNFc=; b=hWmYsaotpYj4w0hINaryi03n7EhNemmIkHk4VmVGi+ExT9n5uIacr6H079DDUe9mrk wreYHp0KuHFtgRPlGlCT0rqKops1K/IPfH3VMYt+XoUMYnJwfoxws3o6pzDxLwQ5F+16 Ep8tM6EHOOPpbYR/uzixsWI6nSROpTrWM7Wj8/XYoeu0arQgpaJ9xThu84iucqtXnpjr 3fxi1CF7kjWDYGRWv2T2AFhj5jOl7OY/HglxSANshpWUkLmnHQkgoA0GoUJ9Dcf5T6yd d4bcm+0pcPQ2PfAdRKTgYhCH6MCZOl8tfVM56Y+t9ht0vvnsQGkBNdxW+Cfbe4baTj4m PpiQ== X-Received: by 10.140.88.100 with SMTP id s91mr49261069qgd.65.1416392320264; Wed, 19 Nov 2014 02:18:40 -0800 (PST) Received: from labgit.bethel.jw.org ([186.233.140.3]) by mx.google.com with ESMTPSA id f3sm956988qag.49.2014.11.19.02.18.38 for (version=TLSv1.2 cipher=ECDHE-RSA-AES128-SHA bits=128/128); Wed, 19 Nov 2014 02:18:39 -0800 (PST) From: Alan Lacerda X-Google-Original-From: Alan Lacerda To: alpine-devel@lists.alpinelinux.org Cc: Alan Lacerda Subject: [alpine-devel] [PATCH] testing/exaile: new aport Date: Wed, 19 Nov 2014 10:18:30 +0000 Message-Id: <1416392310-28193-1-git-send-email-alacerda@alpinelinux.org> X-Mailer: git-send-email 2.1.3 X-Mailinglist: alpine-devel Precedence: list List-Id: Alpine Development List-Unsubscribe: List-Post: List-Help: List-Subscribe: --- testing/exaile/APKBUILD | 40 ++++++++++++++++++++++++++++++++++++++++ 1 file changed, 40 insertions(+) create mode 100644 testing/exaile/APKBUILD diff --git a/testing/exaile/APKBUILD b/testing/exaile/APKBUILD new file mode 100644 index 0000000..f3af4c2 --- /dev/null +++ b/testing/exaile/APKBUILD @@ -0,0 +1,40 @@ +# Contributor: Alan Lacerda +# Maintainer: Alan Lacerda +pkgname=exaile +pkgver=3.4.2 +pkgrel=0 +pkgdesc="A music player with a simple interface and powerful music management capabilities" +url="http://www.exaile.org/" +arch="noarch" +license="GPL2" +depends="" +depends_dev="python" +makedepends="$depends_dev gettext" +install="" +subpackages="" +source="https://github.com/$pkgname/$pkgname/archive/$pkgver.tar.gz" + +_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" + make || return 1 +} + +package() { + cd "$_builddir" + make PREFIX=/usr DESTDIR="${pkgdir}" install || return 1 +} + +md5sums="ff0081f548bc17435877c2c65b05c9b8 3.4.2.tar.gz" +sha256sums="0e280c317871e37cbe9db8d54d37a5bee99cf36ebd0f55048e41787d0461e4bf 3.4.2.tar.gz" +sha512sums="1a13585afc4eaa2b03c3be0bd25394e8c6df824999b676349f6efeabe9286d7c773eaf5938d7a644e9facb9b6184c02cc465fe1ec0d22057ab2cb8a521357312 3.4.2.tar.gz" -- 2.1.3 --- Unsubscribe: alpine-devel+unsubscribe@lists.alpinelinux.org Help: alpine-devel+help@lists.alpinelinux.org ---