37375312b9
In issue https://github.com/termux/termux-packages/issues/6160 I have found that community repo "its-pointless.github.io" specifies us as maintainer for its packages. This is NOT TRUE and potentially misleads people using these packages. Now TERMUX_PKG_MAINTAINER will contain a default value which is neutral and not specify maintainer. So all packages now have to override it to the correct value. [skip ci] %ci:no-build
18 lines
712 B
Bash
18 lines
712 B
Bash
TERMUX_PKG_HOMEPAGE=https://libimobiledevice.org
|
|
TERMUX_PKG_DESCRIPTION="A client library for applications to handle usbmux protocol connections with iOS devices."
|
|
TERMUX_PKG_LICENSE="LGPL-2.1"
|
|
TERMUX_PKG_LICENSE_FILE="COPYING"
|
|
TERMUX_PKG_MAINTAINER="@termux"
|
|
TERMUX_PKG_VERSION=2.0.2
|
|
TERMUX_PKG_SRCURL=https://github.com/libimobiledevice/libusbmuxd/archive/$TERMUX_PKG_VERSION.tar.gz
|
|
TERMUX_PKG_SHA256=8ae3e1d9340177f8f3a785be276435869363de79f491d05d8a84a59efc8a8fdc
|
|
TERMUX_PKG_DEPENDS="libusb, libplist, usbmuxd"
|
|
TERMUX_PKG_BUILD_IN_SRC=true
|
|
|
|
termux_step_configure() {
|
|
./autogen.sh --prefix=$TERMUX_PREFIX \
|
|
--without-preflight \
|
|
--without-systemd \
|
|
--host=$TERMUX_HOST_PLATFORM
|
|
}
|