summaryrefslogtreecommitdiff
path: root/repo/po4a/po4a.xibuild
diff options
context:
space:
mode:
authordavidovski <david@davidovski.xyz>2023-05-17 17:01:27 +0100
committerdavidovski <david@davidovski.xyz>2023-05-17 17:01:27 +0100
commit0d37a1ef234c38b27faba43bc3a22f985d311deb (patch)
treedde8df9f508e7323c3d7df599ceade7705c40acd /repo/po4a/po4a.xibuild
parentf29d569cd33a73da5ad675f43a34ad53c5cc9bc6 (diff)
Remove all firmware
Diffstat (limited to 'repo/po4a/po4a.xibuild')
-rw-r--r--repo/po4a/po4a.xibuild25
1 files changed, 25 insertions, 0 deletions
diff --git a/repo/po4a/po4a.xibuild b/repo/po4a/po4a.xibuild
new file mode 100644
index 0000000..e8c8b83
--- /dev/null
+++ b/repo/po4a/po4a.xibuild
@@ -0,0 +1,25 @@
+#!/bin/sh
+
+NAME="po4a"
+DESC="Tools for helping translation of documentation"
+
+MAKEDEPS=" diffutils docbook-xsl perl-module-build"
+
+PKG_VER=0.68
+SOURCE="https://github.com/mquinson/po4a/archive/v$PKG_VER.tar.gz"
+
+build() {
+ perl Build.PL installdirs=vendor create_packlist=0
+ perl Build
+}
+
+check() {
+ perl Build test
+}
+
+package() {
+ perl Build destdir=$PKG_DEST install
+ # remove perllocal.pod and .packlist
+ find $PKG_DEST \( -name .packlist -o -name perllocal.pod \) -delete
+}
+