summaryrefslogtreecommitdiff
path: root/packages/manaplus.sh
blob: 414346aea17bc2b286ae665264dced6c510b3fff (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

function package_build {
    run_switch_branch master

    run_autoreconf -i
    run_configure

    run_make
    run_make_install
}

function package_use {
    env_path "bin"
    env_man "share/man"
}