From 36b78361e3c4f907e95566c75d1b8d268b405da2 Mon Sep 17 00:00:00 2001 From: David Somero Date: Thu, 13 May 2010 01:01:15 +0200 Subject: system/usbmuxd: Added to 13.0 repository --- system/usbmuxd/85-usbmuxd.rules | 7 +++ system/usbmuxd/README | 8 +++ system/usbmuxd/doinst.sh | 1 + system/usbmuxd/slack-desc | 19 +++++++ system/usbmuxd/usbmuxd.SlackBuild | 106 ++++++++++++++++++++++++++++++++++++++ system/usbmuxd/usbmuxd.info | 10 ++++ 6 files changed, 151 insertions(+) create mode 100644 system/usbmuxd/85-usbmuxd.rules create mode 100644 system/usbmuxd/README create mode 100644 system/usbmuxd/doinst.sh create mode 100644 system/usbmuxd/slack-desc create mode 100644 system/usbmuxd/usbmuxd.SlackBuild create mode 100644 system/usbmuxd/usbmuxd.info (limited to 'system') diff --git a/system/usbmuxd/85-usbmuxd.rules b/system/usbmuxd/85-usbmuxd.rules new file mode 100644 index 0000000000..2fbf92c8a9 --- /dev/null +++ b/system/usbmuxd/85-usbmuxd.rules @@ -0,0 +1,7 @@ +# usbmuxd (iPhone "Apple Mobile Device" MUXer listening on /var/run/usbmuxd) + +# Forces iPhone 1.0, 3G, 3GS and iPodTouch 1 and 2 to USB configuration 3 and run usbmuxd +ACTION=="add", SUBSYSTEM=="usb", GROUP="plugdev", MODE="770", OWNER="usbmux", ATTR{idVendor}=="05ac", ATTR{idProduct}=="129[0-9]", ATTR{bConfigurationValue}!="$attr{bNumConfigurations}", ATTR{bConfigurationValue}="$attr{bNumConfigurations}", RUN+="/usr/sbin/usbmuxd -u --user=usbmux" + +# Exit usbmuxd when the last phone is removed +ACTION=="remove", SUBSYSTEM=="usb", ENV{PRODUCT}=="5ac/129[0-9]/*", ENV{INTERFACE}=="255/*", RUN+="/usr/sbin/usbmuxd -x" diff --git a/system/usbmuxd/README b/system/usbmuxd/README new file mode 100644 index 0000000000..d7ba883206 --- /dev/null +++ b/system/usbmuxd/README @@ -0,0 +1,8 @@ +usbmuxd: USB Multiplex Daemon. This bit of software is in charge of +talking to your iPhone or iPod Touch over USB and coordinating access to +its services by other applications. + +Create a usbmux user with: + useradd -u 233 -g plugdev -d /dev/null -s /bin/false usbmux + +Requires: libusb1 diff --git a/system/usbmuxd/doinst.sh b/system/usbmuxd/doinst.sh new file mode 100644 index 0000000000..687cfbae4d --- /dev/null +++ b/system/usbmuxd/doinst.sh @@ -0,0 +1 @@ +chroot . /etc/rc.d/rc.udev reload diff --git a/system/usbmuxd/slack-desc b/system/usbmuxd/slack-desc new file mode 100644 index 0000000000..7bf63c58a2 --- /dev/null +++ b/system/usbmuxd/slack-desc @@ -0,0 +1,19 @@ +# HOW TO EDIT THIS FILE: +# The "handy ruler" below makes it easier to edit a package description. Line +# up the first '|' above the ':' following the base package name, and the '|' +# on the right side marks the last column you can put a character in. You must +# make exactly 11 lines for the formatting to be correct. It's also +# customary to leave one space after the ':'. + + |-----handy-ruler------------------------------------------------------| +usbmuxd: usbmuxd (USB Multiplex Daemon) +usbmuxd: +usbmuxd: usbmuxd USB Multiplex Daemon. This bit of software is in charge of +usbmuxd: talking to your iPhone or iPod Touch over USB and coordinating +usbmuxd: access to its services by other applications. +usbmuxd: +usbmuxd: +usbmuxd: +usbmuxd: +usbmuxd: +usbmuxd: diff --git a/system/usbmuxd/usbmuxd.SlackBuild b/system/usbmuxd/usbmuxd.SlackBuild new file mode 100644 index 0000000000..01e9632f71 --- /dev/null +++ b/system/usbmuxd/usbmuxd.SlackBuild @@ -0,0 +1,106 @@ +#!/bin/sh + +# Slackware build script for usbmuxd + +# Written by David Somero +# Derived from Slackware's Slackbuilds. +# +# Copyright 2008, 2009 Patrick J. Volkerding, Sebeka, Minnesota, USA +# Copyright 2010 David Somero (dsomero@hotmail.com) Athens, TN, USA +# All rights reserved. +# +# Redistribution and use of this script, with or without modification, is +# permitted provided that the following conditions are met: +# +# 1. Redistributions of this script must retain the above copyright +# notice, this list of conditions and the following disclaimer. +# +# THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR IMPLIED +# WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF +# MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO +# EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, +# SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, +# PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; +# OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, +# WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR +# OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF +# ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + +PRGNAM=usbmuxd +VERSION=${VERSION:-1.0.0} +ARCH=${ARCH:-i486} +BUILD=${BUILD:-1} +TAG=${TAG:-_SBo} + +CWD=$(pwd) +TMP=${TMP:-/tmp/SBo} +PKG=$TMP/package-$PRGNAM +OUTPUT=${OUTPUT:-/tmp} + +if [ "$ARCH" = "i486" ]; then + SLKCFLAGS="-O2 -march=i486 -mtune=i686" + LIBDIRSUFFIX="" +elif [ "$ARCH" = "i686" ]; then + SLKCFLAGS="-O2 -march=i686 -mtune=i686" + LIBDIRSUFFIX="" +elif [ "$ARCH" = "x86_64" ]; then + SLKCFLAGS="-O2 -fPIC" + LIBDIRSUFFIX="64" +fi + +if ! grep -q ^usbmux: /etc/passwd 2>/dev/null ; then + echo " Error: usbmux user doesn't exist." + echo " Create one with: useradd -u 233 -g plugdev -d /dev/null -s /bin/false usbmux" + exit 1 +fi + +set -e + +rm -rf $PKG +mkdir -p $TMP $PKG $OUTPUT +cd $TMP +rm -rf $PRGNAM-$VERSION +tar xvf $CWD/$PRGNAM-$VERSION.tar.bz2 +cd $PRGNAM-$VERSION +chown -R root:root . +find . \ + \( -perm 777 -o -perm 775 -o -perm 711 -o -perm 555 -o -perm 511 \) \ + -exec chmod 755 {} \; -o \ + \( -perm 666 -o -perm 664 -o -perm 600 -o -perm 444 -o -perm 440 -o -perm 400 \) \ + -exec chmod 644 {} \; + +mkdir build +( cd build + cmake \ + -DCMAKE_C_FLAGS:STRING="$SLKCFLAGS" \ + -DCMAKE_CXX_FLAGS:STRING="$SLKCFLAGS" \ + -DCMAKE_BUILD_TYPE=Release \ + -DCMAKE_INSTALL_PREFIX=/usr \ + -DLIB_SUFFIX=${LIBDIRSUFFIX} .. + + make + 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 +) + +cat $CWD/85-usbmuxd.rules > $PKG/lib/udev/rules.d/85-usbmuxd.rules + +mkdir -p $PKG/usr/doc/$PRGNAM-$VERSION +cp -a \ + README* COPYING* AUTHORS \ + $PKG/usr/doc/$PRGNAM-$VERSION +cat $CWD/$PRGNAM.SlackBuild > $PKG/usr/doc/$PRGNAM-$VERSION/$PRGNAM.SlackBuild + +mkdir -p $PKG/install +cat $CWD/slack-desc > $PKG/install/slack-desc +cat $CWD/doinst.sh > $PKG/install/doinst.sh + +cd $PKG +/sbin/makepkg -l y -c n $OUTPUT/$PRGNAM-$VERSION-$ARCH-$BUILD$TAG.${PKGTYPE:-tgz} diff --git a/system/usbmuxd/usbmuxd.info b/system/usbmuxd/usbmuxd.info new file mode 100644 index 0000000000..196928b52d --- /dev/null +++ b/system/usbmuxd/usbmuxd.info @@ -0,0 +1,10 @@ +PRGNAM="usbmuxd" +VERSION="1.0.0" +HOMEPAGE="http://marcansoft.com/blog/iphonelinux/usbmuxd/" +DOWNLOAD="http://marcansoft.com/uploads/usbmuxd/usbmuxd-1.0.0.tar.bz2" +MD5SUM="75b513c1cf95c488ed71d9f618ce1889" +DOWNLOAD_x86_64="" +MD5SUM_x86_64="" +MAINTAINER="David Somero" +EMAIL="dsomero@hotmail.com" +APPROVED="Erik Hanson" -- cgit v1.2.3