From 5e7c03dfb89244a9fb3690b947149d58efe35314 Mon Sep 17 00:00:00 2001 From: Fabian Affolter Date: Sun, 27 Nov 2011 11:41:26 +0000 Subject: Initial APKBUILD for shed 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/ --- testing/shed/APKBUILD | 33 +++++++++++++++++++++++++++++++++ 1 file changed, 33 insertions(+) create mode 100644 testing/shed/APKBUILD (limited to 'testing/shed') diff --git a/testing/shed/APKBUILD b/testing/shed/APKBUILD new file mode 100644 index 0000000000..e159abe887 --- /dev/null +++ b/testing/shed/APKBUILD @@ -0,0 +1,33 @@ +# Contributor: Fabian Affolter +# Maintainer: Fabian Affolter +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" -- cgit v1.2.3