diff options
author | Omar Vega Ramos <ovruni@gnu.org.pe> | 2018-02-24 15:27:14 -0500 |
---|---|---|
committer | Omar Vega Ramos <ovruni@gnu.org.pe> | 2018-02-24 15:27:14 -0500 |
commit | 6406bbaff7e7cccbcd2779511bc02546386d1ffb (patch) | |
tree | ce0ff8fac0de1e4ed9208bbc2e0c83801c28cc23 | |
parent | 53a6f61293a2d065827dd9bb9adef2c0b2320fd8 (diff) | |
download | abslibre-6406bbaff7e7cccbcd2779511bc02546386d1ffb.tar.gz abslibre-6406bbaff7e7cccbcd2779511bc02546386d1ffb.tar.bz2 abslibre-6406bbaff7e7cccbcd2779511bc02546386d1ffb.zip |
Removing rtmidi: This package is in [community] repo
-rw-r--r-- | pcr/rtmidi/0001-fix-tests-with-prefix.diff | 20 | ||||
-rw-r--r-- | pcr/rtmidi/PKGBUILD | 49 |
2 files changed, 0 insertions, 69 deletions
diff --git a/pcr/rtmidi/0001-fix-tests-with-prefix.diff b/pcr/rtmidi/0001-fix-tests-with-prefix.diff deleted file mode 100644 index 973043e4c..000000000 --- a/pcr/rtmidi/0001-fix-tests-with-prefix.diff +++ /dev/null @@ -1,20 +0,0 @@ ---- a/rtmidi-3.0.0/configure 2017-08-31 18:53:21.000000000 -0700 -+++ b/rtmidi-3.0.0/configure 2017-09-28 19:18:37.512786478 -0700 -@@ -16625,7 +16625,6 @@ - # Set paths if prefix is defined - if test "x$prefix" != "x" && test "x$prefix" != "xNONE"; then - LIBS="$LIBS -L$prefix/lib" -- CPPFLAGS="$CPPFLAGS -I$prefix/include/rtmidi" - fi - - # For -I and -D flags ---- a/rtmidi-3.0.0/configure.ac 2017-08-31 17:10:07.000000000 -0700 -+++ b/rtmidi-3.0.0/configure.ac 2017-09-28 19:19:37.515888982 -0700 -@@ -77,7 +77,6 @@ - # Set paths if prefix is defined - if test "x$prefix" != "x" && test "x$prefix" != "xNONE"; then - LIBS="$LIBS -L$prefix/lib" -- CPPFLAGS="$CPPFLAGS -I$prefix/include/rtmidi" - fi - - # For -I and -D flags diff --git a/pcr/rtmidi/PKGBUILD b/pcr/rtmidi/PKGBUILD deleted file mode 100644 index 8607ddc57..000000000 --- a/pcr/rtmidi/PKGBUILD +++ /dev/null @@ -1,49 +0,0 @@ -# Maintainer (AUR): Llewelyn Trahaearn <WoefulDerelict at GMail dot com> -# Contributor (AUR): rtfreedman <rob dot til dot freedman at gmail dot com> -# Contributor (AUR): speps <speps at aur dot archlinux dot org> - -# parabola changes and rationale: -# no changes. - -pkgname=rtmidi -pkgver=3.0.0 -pkgrel=1 -pkgdesc="A set of C++ classes that provides a common API for realtime MIDI input/output." -arch=('i686' 'x86_64' 'armv7h') -url="http://www.music.mcgill.ca/~gary/rtmidi/" -license=('MIT') -depends=('jack') -source=("${url}release/${pkgname}-${pkgver}.tar.gz" - '0001-fix-tests-with-prefix.diff') -sha512sums=('b5cba769e4641ac453493e2e6ca6f947d7ef5fe71870dd10aa19c93ad18dd62ed01358c468c0e1e326dbc29bd00ecc32b9d8895276d9f46e9e0aa20ed6e0b70f' - 'b45156fd1fca578a0952f3819ffe5721b57e8e8237ba3b532bad0349e201bcfc75460d4d393b3233dacbc994be71186e72f2ae475ac97053ef51716e9f7ba99a') - -prepare() { - # Link the tests against build output and not the system library when using --prefix. - # [https://github.com/thestk/rtmidi/pull/127] - patch -Np1 -i 0001-fix-tests-with-prefix.diff -} - -build() { - cd "${pkgname}-${pkgver}" - ./configure --prefix=/usr --with-alsa --with-jack - make -} - -package() { - cd "${pkgname}-${pkgver}" - make DESTDIR="${pkgdir}" install - - # Text documentation. - install -d "${pkgdir}/usr/share/doc/${pkgname}" - install -Dm644 README.md doc/release.txt "${pkgdir}/usr/share/doc/${pkgname}" - - # HTML documentation. - install -d "${pkgdir}/usr/share/doc/${pkgname}/"{html,images} - install -Dm644 doc/html/* "${pkgdir}/usr/share/doc/${pkgname}/html" - install -Dm644 doc/images/* "${pkgdir}/usr/share/doc/${pkgname}/images" - - # License. - csplit -s README.md "%Legal and%" - install -Dm644 xx00 "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE" -} |