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

function package_build {
    run_git_switch_branch master

    run_autoreconf -i
    run_configure

    run_make
    run_make_install
}

function package_get_source {
    run_git_clone https://gitlab.com/manaplus/manaplus.git
}

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