summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--hx/.footprint7
-rw-r--r--hx/.md5sum0
-rw-r--r--hx/Pkgfile22
3 files changed, 29 insertions, 0 deletions
diff --git a/hx/.footprint b/hx/.footprint
new file mode 100644
index 0000000..e1eb6e8
--- /dev/null
+++ b/hx/.footprint
@@ -0,0 +1,7 @@
1drwxr-xr-x root/root usr/
2drwxr-xr-x root/root usr/bin/
3-rwxr-xr-x root/root usr/bin/hx
4drwxr-xr-x root/root usr/share/
5drwxr-xr-x root/root usr/share/man/
6drwxr-xr-x root/root usr/share/man/man1/
7-rw-r--r-- root/root usr/share/man/man1/hx.1.gz
diff --git a/hx/.md5sum b/hx/.md5sum
new file mode 100644
index 0000000..e69de29
--- /dev/null
+++ b/hx/.md5sum
diff --git a/hx/Pkgfile b/hx/Pkgfile
new file mode 100644
index 0000000..8626409
--- /dev/null
+++ b/hx/Pkgfile
@@ -0,0 +1,22 @@
1# Description: Hex editor for the terminal using plain C99 + POSIX libs
2# URL: https://github.com/krpors/hx
3# Maintainer: Shokara Kou, kou at 13f0 dot net
4# Depends on:
5
6name=hx
7commit=b6ccdbc
8version=git-$commit
9release=1
10source=()
11
12cloneurl=https://github.com/krpors/hx/
13
14build() {
15 git clone $cloneurl
16 cd $name
17 git checkout $commit
18
19 make
20 install -Dm755 -t $PKG/usr/bin hx
21 install -Dm644 -t $PKG/usr/share/man/man1 hx.1
22}