diff options
Diffstat (limited to 'system/usbmuxd/usbmuxd.SlackBuild')
-rw-r--r-- | system/usbmuxd/usbmuxd.SlackBuild | 11 |
1 files changed, 3 insertions, 8 deletions
diff --git a/system/usbmuxd/usbmuxd.SlackBuild b/system/usbmuxd/usbmuxd.SlackBuild index 01e9632f71..56da336cc8 100644 --- a/system/usbmuxd/usbmuxd.SlackBuild +++ b/system/usbmuxd/usbmuxd.SlackBuild @@ -27,7 +27,7 @@ # ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. PRGNAM=usbmuxd -VERSION=${VERSION:-1.0.0} +VERSION=${VERSION:-1.0.2} ARCH=${ARCH:-i486} BUILD=${BUILD:-1} TAG=${TAG:-_SBo} @@ -82,13 +82,8 @@ mkdir build make install DESTDIR=$PKG ) || exit - -( cd $PKG - find . | xargs file | grep "executable" | grep ELF | cut -f 1 -d : | \ - xargs strip --strip-unneeded 2> /dev/null || true - find . | xargs file | grep "shared object" | grep ELF | cut -f 1 -d : | \ - xargs strip --strip-unneeded 2> /dev/null || true -) +find $PKG | xargs file | grep -e "executable" -e "shared object" | grep ELF \ + | cut -f 1 -d : | xargs strip --strip-unneeded 2> /dev/null || true cat $CWD/85-usbmuxd.rules > $PKG/lib/udev/rules.d/85-usbmuxd.rules |