2024-08-22 04:26:02 +00:00
|
|
|
# general info
|
|
|
|
NAME="confer"
|
|
|
|
DESC="MatterLinux configuration manager"
|
2024-09-02 21:27:28 +00:00
|
|
|
VERSION="24.04"
|
2024-08-22 04:26:02 +00:00
|
|
|
|
|
|
|
# required files
|
|
|
|
FILES=("https://git.matterlinux.xyz/Matter/confer/archive/${VERSION}.tar.gz")
|
|
|
|
HASHES=("4166da9e5f9544bc2aa931dc12926d244007c9ed93945d4a4e375e739e0e1fd8")
|
|
|
|
|
|
|
|
# install and build depends
|
|
|
|
DEPENDS=("libgit2" "libinih" "curl")
|
|
|
|
BUILD=("gettext")
|
|
|
|
|
|
|
|
PACKAGE(){
|
|
|
|
tar xf "${VERSION}.tar.gz"
|
|
|
|
cd "${NAME}"
|
|
|
|
|
|
|
|
make
|
|
|
|
make DESTDIR="${ROOTDIR}" install
|
|
|
|
|
|
|
|
cd .. && rm -r "${NAME}"
|
|
|
|
}
|