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

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

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

BUILD_TYPE="automake"

function package_build {
    run_switch_branch

    run_autoreconf -i
    run_configure

    run_make
    run_make_install
}