blob: 8626409b9471f2d7f6cf7e8ee6c7624cfccb47c0 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
# Description: Hex editor for the terminal using plain C99 + POSIX libs
# URL: https://github.com/krpors/hx
# Maintainer: Shokara Kou, kou at 13f0 dot net
# Depends on:
name=hx
commit=b6ccdbc
version=git-$commit
release=1
source=()
cloneurl=https://github.com/krpors/hx/
build() {
git clone $cloneurl
cd $name
git checkout $commit
make
install -Dm755 -t $PKG/usr/bin hx
install -Dm644 -t $PKG/usr/share/man/man1 hx.1
}
|