[arch-commits] Commit in liquid-dsp-sse4.1/repos (2 files)
Filipe Laíns
ffy00 at archlinux.org
Fri Jun 14 23:36:53 UTC 2019
Date: Friday, June 14, 2019 @ 23:36:52
Author: ffy00
Revision: 481588
archrelease: copy trunk to community-x86_64
Added:
liquid-dsp-sse4.1/repos/community-x86_64/
liquid-dsp-sse4.1/repos/community-x86_64/PKGBUILD
(from rev 481587, liquid-dsp-sse4.1/trunk/PKGBUILD)
----------+
PKGBUILD | 44 ++++++++++++++++++++++++++++++++++++++++++++
1 file changed, 44 insertions(+)
Copied: liquid-dsp-sse4.1/repos/community-x86_64/PKGBUILD (from rev 481587, liquid-dsp-sse4.1/trunk/PKGBUILD)
===================================================================
--- community-x86_64/PKGBUILD (rev 0)
+++ community-x86_64/PKGBUILD 2019-06-14 23:36:52 UTC (rev 481588)
@@ -0,0 +1,44 @@
+# Maintainer: Filipe Laíns (FFY00) <lains at archlinux.org>
+
+pkgname=liquid-dsp-sse4.1
+_pkgname=liquid-dsp
+pkgver=1.3.1
+pkgrel=1
+pkgdesc='Open-source signal processing library for software-defined radios'
+arch=('x86_64')
+url='http://liquidsdr.org'
+license=('MIT')
+depends=('glibc')
+optdepends=('fftw: efficient FFT')
+provides=('liquid-dsp')
+conflicts=('liquid-dsp')
+source=("$url/downloads/$_pkgname-$pkgver.tar.gz")
+sha512sums=('6da76030fc346e3fadfe70e72be14d1f2ff198d3e9bb5ffb5f4d9b89945686d2474d3bb4911a2b923aad22feabebf2744d47afbffabab87737fe46a24af68917')
+
+prepare() {
+ sed -i 's|ax_cv_have_sse41_ext=.*|ax_cv_have_sse41_ext=yes|' $_pkgname-$pkgver/scripts/ax_ext.m4
+}
+
+build() {
+ cd $_pkgname-$pkgver
+
+ autoreconf -vif
+ ./configure --prefix=/usr
+
+ make
+}
+
+check() {
+ cd $_pkgname-$pkgver
+
+ make check
+}
+
+package() {
+ cd $_pkgname-$pkgver
+
+ make DESTDIR="$pkgdir" install
+
+ install -Dm 644 LICENSE "$pkgdir"/usr/share/licenses/$_pkgname/LICENSE
+}
+
More information about the arch-commits
mailing list