X-Original-To: alpine-aports@lists.alpinelinux.org Received: from mout02.posteo.de (mout02.posteo.de [185.67.36.66]) by lists.alpinelinux.org (Postfix) with ESMTP id 13D5C5C5F6D for ; Sun, 1 Jul 2018 14:45:19 +0000 (GMT) Received: from submission (posteo.de [89.146.220.130]) by mout02.posteo.de (Postfix) with ESMTPS id D857C20EF4 for ; Sun, 1 Jul 2018 16:45:17 +0200 (CEST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=posteo.net; s=2017; t=1530456317; bh=yuwc0/ImBR1/juofISKUzG6XG9jbJczBn6GGZYkyAiw=; h=From:To:Cc:Subject:Date:From; b=VrEjmsQE3wuG0+ojhOcFOO0p4AD6VOdhgoEhWTRGREuwaNL+T4z4NKiLjY6ZINy/6 F79ambZ83mX1VSyX9IYPDhSb2kqWH9/hge6O0uju2KBKPqWvBf9Wo4ubqXpKF7HgAn 63ZzkDn9t/YW3OgrfCaN8uPiJNJ9lipPs4eXI/Pk+4EqaamGwdZJD6PUr7eg/rwsGT z1pDxH5NZ85TLHqFQnPEZiMcqK34MzbRvBH0IgFa0B15dHieC2FCp8omN88+Kqks5I CTKkOs8v96Zqcrr0ybQEaPb9JwE+e4x46No60dxeuaJXf76VU6Wyn/4wsuSdzyVf+K YuuDpKfQ/kJDw== Received: from customer (localhost [127.0.0.1]) by submission (posteo.de) with ESMTPSA id 41JY8D5vf7zyrx; Sun, 1 Jul 2018 16:45:16 +0200 (CEST) From: Sascha Paunovic To: alpine-aports@lists.alpinelinux.org Cc: Sascha Paunovic Subject: [alpine-aports] [PATCH] testing/cava: new aport Date: Sun, 1 Jul 2018 16:45:15 +0200 Message-Id: <20180701144515.6785-1-azarus@posteo.net> X-Mailer: git-send-email 2.18.0 X-Mailinglist: alpine-aports Precedence: list List-Id: Alpine Development List-Unsubscribe: List-Post: List-Help: List-Subscribe: --- testing/cava/APKBUILD | 38 ++++++++++++++++++++++++++++++++++++++ 1 file changed, 38 insertions(+) create mode 100644 testing/cava/APKBUILD diff --git a/testing/cava/APKBUILD b/testing/cava/APKBUILD new file mode 100644 index 0000000000..b2dfe566e7 --- /dev/null +++ b/testing/cava/APKBUILD @@ -0,0 +1,38 @@ +# Contributor: Sascha Paunovic +# Maintainer: Sascha Paunovic +#TODO: pulseaudio & sndio subpackage +pkgname=cava +pkgver=0.6.1 +pkgrel=0 +pkgdesc="console based audio visualizer for ALSA & more" +url="https://github.com/karlstav/cava" +arch="all" +license="MIT" +makedepends="fftw-dev ncurses-dev alsa-lib-dev libtool" +source="$pkgname-$pkgver.tar.gz::https://github.com/karlstav/$pkgname/archive/$pkgver.tar.gz" +builddir="$srcdir/$pkgname-$pkgver" + +build() { + cd "$builddir" + autoreconf -if + ./configure \ + --build=$CBUILD \ + --host=$CHOST \ + --prefix=/usr \ + --sysconfdir=/etc \ + --mandir=/usr/share/man \ + --localstatedir=/var + make +} + +check() { + cd "$builddir" + make check # currently doesn't do much, but better than nothing +} + +package() { + cd "$builddir" + make DESTDIR="$pkgdir" install +} + +sha512sums="fb8a685f5c758ca1d95d3bbafadd4dbbf109592b6c3052b0821c2f69f3423e0af7657de4c3c1cdbd1523748bf56a09cbf706afa404051a6fba8139ca128ebecb cava-0.6.1.tar.gz" -- 2.18.0 --- Unsubscribe: alpine-aports+unsubscribe@lists.alpinelinux.org Help: alpine-aports+help@lists.alpinelinux.org ---