summarylogtreecommitdiffstats
diff options
context:
space:
mode:
authorLlewelyn Trahaearn2016-03-30 10:00:46 -0700
committerLlewelyn Trahaearn2016-03-30 10:00:46 -0700
commit40c6d02e04dd112575ba88d3dac140c173d881ff (patch)
treed7f623a5a0c01c9a4be6d8bee4ee850fd17a1eaf
parentddfecd811f9770d144283b06ff782923bf43b281 (diff)
downloadaur-40c6d02e04dd112575ba88d3dac140c173d881ff.tar.gz
Replace test scripts with binaries.
-rw-r--r--.SRCINFO2
-rw-r--r--PKGBUILD2
2 files changed, 2 insertions, 2 deletions
diff --git a/.SRCINFO b/.SRCINFO
index c34cf662c497..462bea6ce041 100644
--- a/.SRCINFO
+++ b/.SRCINFO
@@ -1,5 +1,5 @@
# Generated by mksrcinfo v8
-# Tue Mar 29 03:33:40 UTC 2016
+# Wed Mar 30 17:00:13 UTC 2016
pkgbase = rtmidi
pkgdesc = A set of C++ classes that provides a common API for realtime MIDI input/output.
pkgver = 2.1.1
diff --git a/PKGBUILD b/PKGBUILD
index 48fcb1422cf1..87cfe58a53bb 100644
--- a/PKGBUILD
+++ b/PKGBUILD
@@ -24,7 +24,7 @@ package() {
make DESTDIR="${pkgdir}" install
# Install test utilities with prefix 'rtmidi-'
- for _bin in `find tests -maxdepth 1 -type f -perm 755 ! -name "*.*"`; do
+ for _bin in `find tests/.libs -maxdepth 1 -type f -perm 755 ! -name "*.*"`; do
install -Dm755 $_bin "${pkgdir}/usr/bin/${pkgname}-"`basename $_bin`
done