16 lines
530 B
Text
16 lines
530 B
Text
# Package details.
|
|
PKG_NAME="$(basename "${BASH_SOURCE[0]}" .buildconf)"
|
|
PKG_VERSION="git_20221015"
|
|
PKG_BUILD="1"
|
|
PKG_TAG="${PKG_TAG:-_tadgy}"
|
|
PKG_EXT="${PKG_EXT:-txz}"
|
|
|
|
# Sources - the details in these arrays must all match per indicies.
|
|
SRC_DOWNLOADS=("https://github.com/baszoetekouw/pinfo/archive/refs/heads/main.zip")
|
|
SRC_MD5SUMS=("547bdad61abd68cf62e173e75efefcc2")
|
|
SRC_FILENAMES=("$PKG_NAME-$PKG_VERSION.zip")
|
|
SRC_DIRNAMES=("$PKG_NAME-main")
|
|
|
|
# Build configuration.
|
|
BUILD_REQUIRES=('ncurses' 'readline')
|
|
BUILD_CONFLICTS=()
|