576b865cf4
That means that the Makefile and xbps-src generated files are not required anymore, and the xbps-src script can be used as is. Bump xbps requirement to 0.35 and enable XBPS_INSTALL_ARGS by default.
22 lines
468 B
Bash
22 lines
468 B
Bash
# -*- shell mode -*-
|
|
#
|
|
# Sets the minimal required xbps versions to build packages.
|
|
#
|
|
# =========================================================
|
|
# DO NOT MODIFY THIS FILE WITHOUT PRIOR WRITTEN PERMISSION!
|
|
# =========================================================
|
|
# OBSOLETE WITH XBPS>=0.35, KEEP THIS FOR COMPAT.
|
|
|
|
set -a
|
|
|
|
# xbps-src version.
|
|
XBPS_SRC_REQ=112
|
|
|
|
# XBPS utils version.
|
|
XBPS_UTILS_REQ=0.33
|
|
|
|
# XBPS utils API version.
|
|
XBPS_UTILS_API_REQ=20140304
|
|
|
|
set +a
|