mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2026-02-12 19:32:31 +01:00
Package description: shed is an easy to use hex editor written for unix/linux using ncurses, with a friendly pico-style interface. - Displays each byte as ascii, hex, decimal, octal and binary. - Allows changes to be input in all of the above (and now with bit toggling in the binary column) - Simple Pico-style interface - Search - Dump to file - Small memory requirments because file is not loaded into memory - Large file support Website: http://shed.sourceforge.net/
34 lines
739 B
Plaintext
34 lines
739 B
Plaintext
# Contributor: Fabian Affolter <fabian@affolter-engineering.ch>
|
|
# Maintainer: Fabian Affolter <fabian@affolter-engineering.ch>
|
|
pkgname=shed
|
|
pkgver=1.15
|
|
pkgrel=0
|
|
pkgdesc="A simple hex editor"
|
|
url="http://shed.sourceforge.net/"
|
|
arch="all"
|
|
license="GPL2+"
|
|
depends=""
|
|
depends_dev=""
|
|
makedepends="ncurses-dev"
|
|
install=""
|
|
subpackages="$pkgname-doc"
|
|
source="http://downloads.sourceforge.net/shed/shed-$pkgver.tar.gz"
|
|
_builddir="$srcdir"/$pkgname-$pkgver
|
|
|
|
build() {
|
|
cd "$_builddir"
|
|
./configure \
|
|
--prefix=/usr \
|
|
--mandir=/usr/share/man \
|
|
|| return 1
|
|
make || return 1
|
|
}
|
|
|
|
package() {
|
|
cd "$_builddir"
|
|
make DESTDIR="$pkgdir" install || return 1
|
|
rm -f "$pkgdir"/usr/lib/*.la
|
|
}
|
|
|
|
md5sums="c7d7d464d6b4fa28a7980270d03e0906 shed-1.15.tar.gz"
|