Date: Sunday, February 5, 2023 @ 21:49:12
Author: heftig
Revision: 468247
archrelease: copy trunk to extra-x86_64
Added:
libimobiledevice/repos/extra-x86_64/PKGBUILD
(from rev 468246, libimobiledevice/trunk/PKGBUILD)
Deleted:
libimobiledevice/repos/extra-x86_64/PKGBUILD
----------+
PKGBUILD | 111 ++++++++++++++++++++++++++++++++++---------------------------
1 file changed, 63 insertions(+), 48 deletions(-)
Deleted: PKGBUILD
===================================================================
--- PKGBUILD 2023-02-05 21:48:57 UTC (rev 468246)
+++ PKGBUILD 2023-02-05 21:49:12 UTC (rev 468247)
@@ -1,48 +0,0 @@
-# Contributor: Tom Gundersen <[email protected]>
-# Contributor: Ionut Biru <[email protected]>
-# Contributor: Gabriel Martinez < reitaka at gmail dot com >
-
-pkgname=libimobiledevice
-pkgver=1.3.0
-pkgrel=5
-pkgdesc="Library that talks the protocols to support iPhone and iPod Touch
devices on Linux"
-url="https://libimobiledevice.org/"
-arch=('x86_64')
-license=('GPL2' 'LGPL2.1')
-depends=('libusbmuxd' 'usbmuxd' 'gnutls')
-makedepends=('python' 'cython' 'libplist' 'autoconf-archive'
- 'git' 'python-setuptools')
-_commit=15f8652126664e3a4b980e5d1c039b9053ce8566
-source=("git+https://github.com/libimobiledevice/libimobiledevice#commit=$_commit")
-sha256sums=('SKIP')
-
-pkgver() {
- cd $pkgname
- git describe --tags | sed 's/-/+/g'
-}
-
-prepare() {
- cd $pkgname
- # Update ac_python_devel.m4 to newer ax_python_devel.m4
- git cherry-pick -n eea4f1be91
- NOCONFIGURE=1 ./autogen.sh
-}
-
-build() (
- cd $pkgname
- ./configure --prefix=/usr --disable-openssl
- sed -i -e 's/ -shared / -Wl,-O1,--as-needed\0/g' libtool
- make
-)
-
-check() {
- cd $pkgname
- make check
-}
-
-package() {
- cd $pkgname
- DESTDIR="$pkgdir" make install
-}
-
-# vim:set sw=2 et:
Copied: libimobiledevice/repos/extra-x86_64/PKGBUILD (from rev 468246,
libimobiledevice/trunk/PKGBUILD)
===================================================================
--- PKGBUILD (rev 0)
+++ PKGBUILD 2023-02-05 21:49:12 UTC (rev 468247)
@@ -0,0 +1,63 @@
+# Contributor: Tom Gundersen <[email protected]>
+# Contributor: Ionut Biru <[email protected]>
+# Contributor: Gabriel Martinez < reitaka at gmail dot com >
+
+pkgname=libimobiledevice
+pkgver=1.3.0
+pkgrel=6
+pkgdesc="Library that talks the protocols to support iPhone and iPod Touch
devices on Linux"
+url="https://libimobiledevice.org/"
+arch=(x86_64)
+license=(GPL2 LGPL2.1)
+depends=(
+ gnutls
+ libgcrypt
+ libplist
+ libtasn1
+ libusbmuxd
+)
+makedepends=(
+ autoconf-archive
+ cython
+ git
+ python
+ python-setuptools
+)
+provides=(libimobiledevice-1.0.so)
+_commit=15f8652126664e3a4b980e5d1c039b9053ce8566
+source=("git+https://github.com/libimobiledevice/libimobiledevice#commit=$_commit")
+b2sums=('SKIP')
+
+pkgver() {
+ cd $pkgname
+ git describe --tags | sed 's/[^-]*-g/r&/;s/-/+/g'
+}
+
+prepare() {
+ cd $pkgname
+
+ # Update ac_python_devel.m4 to newer ax_python_devel.m4
+ git cherry-pick -n eea4f1be91
+
+ NOCONFIGURE=1 ./autogen.sh
+}
+
+build() (
+ cd $pkgname
+ ./configure --prefix=/usr --sysconfdir=/etc --localstatedir=/var \
+ --disable-openssl
+ sed -i -e 's/ -shared / -Wl,-O1,--as-needed\0/g' libtool
+ make
+)
+
+check() {
+ cd $pkgname
+ make check
+}
+
+package() {
+ cd $pkgname
+ make DESTDIR="$pkgdir" install
+}
+
+# vim:set sw=2 sts=-1 et: