summaryrefslogtreecommitdiff
path: root/packages/manaplus.sh
blob: ed7bdc1196fd05dd56b305a6e60107727c301d3f (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#!/bin/bash

SRCURL=https://gitlab.com/manaplus/manaplus.git

ENV_PATH="bin"
ENV_MANPATH="share/man"

function package_build {
    run_switch_branch

    run_autoreconf -i
    run_configure

    run_make
    run_make_install
}