summaryrefslogtreecommitdiffstats
path: root/source/l/libusbmuxd
diff options
context:
space:
mode:
author Patrick J Volkerding <volkerdi@slackware.com>2019-02-01 01:26:44 +0000
committer Eric Hameleers <alien@slackware.com>2019-02-01 08:59:45 +0100
commite38fab7e3aaf1ad00516bde42341708ace603227 (patch)
tree77c27c38e6239198f858a30d8fc805ee546c6b3b /source/l/libusbmuxd
parente252bed9bc920e449204d39894e5bb036b516c94 (diff)
downloadcurrent-e38fab7e3aaf1ad00516bde42341708ace603227.tar.gz
current-e38fab7e3aaf1ad00516bde42341708ace603227.tar.xz
Fri 01 Feb 2019 01:26:44 AM UTC20190201012644
a/glibc-solibs-2.29-x86_64-1.txz: Upgraded. a/kernel-generic-4.19.19-x86_64-1.txz: Upgraded. a/kernel-huge-4.19.19-x86_64-1.txz: Upgraded. a/kernel-modules-4.19.19-x86_64-1.txz: Upgraded. d/kernel-headers-4.19.19-x86-1.txz: Upgraded. d/ninja-1.9.0-x86_64-1.txz: Upgraded. d/ruby-2.6.1-x86_64-1.txz: Upgraded. k/kernel-source-4.19.19-noarch-1.txz: Upgraded. l/glibc-2.29-x86_64-1.txz: Upgraded. l/glibc-i18n-2.29-x86_64-1.txz: Upgraded. l/glibc-profile-2.29-x86_64-1.txz: Upgraded. l/harfbuzz-2.3.1-x86_64-1.txz: Upgraded. l/libimobiledevice-20190126_d200973-x86_64-1.txz: Upgraded. Switch to git since the latest release no longer works. l/libusbmuxd-20190118_c75605d-x86_64-1.txz: Upgraded. Switch to git since the latest release no longer works. l/mpfr-4.0.2-x86_64-1.txz: Upgraded. x/mesa-18.3.3-x86_64-1.txz: Upgraded. isolinux/initrd.img: Rebuilt. kernels/*: Upgraded. usb-and-pxe-installers/usbboot.img: Rebuilt.
Diffstat (limited to 'source/l/libusbmuxd')
-rwxr-xr-xsource/l/libusbmuxd/fetch-libusbmuxd.sh47
-rwxr-xr-xsource/l/libusbmuxd/libusbmuxd.SlackBuild6
2 files changed, 52 insertions, 1 deletions
diff --git a/source/l/libusbmuxd/fetch-libusbmuxd.sh b/source/l/libusbmuxd/fetch-libusbmuxd.sh
new file mode 100755
index 000000000..1fde09b9a
--- /dev/null
+++ b/source/l/libusbmuxd/fetch-libusbmuxd.sh
@@ -0,0 +1,47 @@
+#!/bin/sh
+
+# Copyright 2019 Patrick J. Volkerding, Sebeka, Minnesota, 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.
+
+# Pull a stable branch + patches
+BRANCH=${1:-master}
+
+# Clear download area:
+rm -rf libusbmuxd
+
+# Clone repository:
+git clone https://github.com/libimobiledevice/libusbmuxd
+
+# checkout $BRANCH:
+( cd libusbmuxd
+ git checkout $BRANCH || exit 1
+)
+
+HEADISAT="$( cd libusbmuxd && git log -1 --format=%h )"
+DATE="$( cd libusbmuxd && git log -1 --format=%ad --date=format:%Y%m%d )"
+# Cleanup. We're not packing up the whole git repo.
+( cd libusbmuxd && find . -type d -name ".git*" -exec rm -rf {} \; 2> /dev/null )
+mv libusbmuxd libusbmuxd-${DATE}_${HEADISAT}
+tar cf libusbmuxd-${DATE}_${HEADISAT}.tar libusbmuxd-${DATE}_${HEADISAT}
+xz -9 -f libusbmuxd-${DATE}_${HEADISAT}.tar
+rm -rf libusbmuxd-${DATE}_${HEADISAT}
+echo
+echo "libusbmuxd branch $BRANCH with HEAD at $HEADISAT packaged as libusbmuxd-${DATE}_${HEADISAT}.tar.xz"
+echo
diff --git a/source/l/libusbmuxd/libusbmuxd.SlackBuild b/source/l/libusbmuxd/libusbmuxd.SlackBuild
index 4348e6281..9b650f997 100755
--- a/source/l/libusbmuxd/libusbmuxd.SlackBuild
+++ b/source/l/libusbmuxd/libusbmuxd.SlackBuild
@@ -24,7 +24,7 @@ cd $(dirname $0) ; CWD=$(pwd)
PKGNAM=libusbmuxd
VERSION=${VERSION:-$(echo $PKGNAM-*.tar.?z* | rev | cut -f 3- -d . | cut -f 1 -d - | rev)}
-BUILD=${BUILD:-2}
+BUILD=${BUILD:-1}
# Automatically determine the architecture we're building on:
if [ -z "$ARCH" ]; then
@@ -78,6 +78,10 @@ find . \
\( -perm 666 -o -perm 664 -o -perm 600 -o -perm 444 -o -perm 440 -o -perm 400 \) \
-exec chmod 644 {} \;
+if [ ! -r configure ]; then
+ NOCONFIGURE=1 ./autogen.sh
+fi
+
CFLAGS="$SLKCFLAGS" \
CXXFLAGS="$SLKCFLAGS" \
./configure \