mirror of
https://github.com/termux-pacman/termux-packages.git
synced 2025-12-24 04:30:24 +00:00
Update repo
This commit is contained in:
@@ -1,3 +1,5 @@
|
||||
#!/usr/bin/bash
|
||||
|
||||
termux_download() {
|
||||
if [ $# != 3 ]; then
|
||||
termux_error_exit "termux_download(): Invalid arguments - expected \$URL \$DESTINATION \$CHECKSUM"
|
||||
|
||||
@@ -1,3 +1,5 @@
|
||||
#!/usr/bin/bash
|
||||
|
||||
termux_download_deb_pac() {
|
||||
local PACKAGE=$1
|
||||
local PACKAGE_ARCH=$2
|
||||
|
||||
@@ -1,3 +1,5 @@
|
||||
#!/usr/bin/bash
|
||||
|
||||
termux_extract_dep_info() {
|
||||
PKG=$1
|
||||
PKG_DIR=$2
|
||||
|
||||
@@ -69,8 +69,10 @@ termux_step_massage() {
|
||||
# Check so files were actually installed. Exclude
|
||||
# share/doc/$TERMUX_PKG_NAME/ as a license file is always
|
||||
# installed there.
|
||||
if [ "$(find . -type f -not -path "./share/doc/$TERMUX_PKG_NAME/*")" = "" ]; then
|
||||
termux_error_exit "No files in package. Maybe you need to run autoreconf -fi before configuring?"
|
||||
if [ "$(find . -type f -not -path "./share/doc/$TERMUX_PKG_NAME/*")" = "" ] && [ -f "$TERMUX_PKG_SRCDIR"/configure.ac ] || [ -f "$TERMUX_PKG_SRCDIR"/configure.in ]; then
|
||||
termux_error_exit "No files in package. Maybe you need to run autoreconf -fi before configuring."
|
||||
elif [ "$(find . -type f -not -path "./share/doc/$TERMUX_PKG_NAME/*")" = "" ]; then
|
||||
termux_error_exit "No files in package."
|
||||
fi
|
||||
|
||||
local HARDLINKS
|
||||
|
||||
Reference in New Issue
Block a user