summaryrefslogtreecommitdiff
path: root/packages/manaplus.sh
diff options
context:
space:
mode:
Diffstat (limited to 'packages/manaplus.sh')
-rwxr-xr-xpackages/manaplus.sh20
1 files changed, 20 insertions, 0 deletions
diff --git a/packages/manaplus.sh b/packages/manaplus.sh
new file mode 100755
index 0000000..a32ddaf
--- /dev/null
+++ b/packages/manaplus.sh
@@ -0,0 +1,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"
+}