diff options
author | Natanael Copa <ncopa@alpinelinux.org> | 2011-10-28 11:34:33 +0000 |
---|---|---|
committer | Natanael Copa <ncopa@alpinelinux.org> | 2011-10-28 12:36:38 +0000 |
commit | 7735fee115cb7cd6b88a969a3aec5c0c6e959cd1 (patch) | |
tree | eda97525668fa50dd39a1b331958cd1ba29d20eb /testing | |
parent | 0ad456491baa146c16f7c9a95cb93a61ecca3a42 (diff) | |
download | aports-7735fee115cb7cd6b88a969a3aec5c0c6e959cd1.tar.bz2 aports-7735fee115cb7cd6b88a969a3aec5c0c6e959cd1.tar.xz |
main/joe: moved from testing
Diffstat (limited to 'testing')
-rw-r--r-- | testing/joe/APKBUILD | 40 |
1 files changed, 0 insertions, 40 deletions
diff --git a/testing/joe/APKBUILD b/testing/joe/APKBUILD deleted file mode 100644 index 6ee1013bd..000000000 --- a/testing/joe/APKBUILD +++ /dev/null @@ -1,40 +0,0 @@ -# Contributor: Danilo Godec <danilo.godec@agenda.si> -# Maintainer: -pkgname=joe -pkgver=3.7 -pkgrel=0 -pkgdesc="Full featured terminal-based screen editor" -url="http://joe-editor.sourceforge.net/" -arch="all" -license="GPL" -depends="" -makedepends="ncurses-dev" -install="" -subpackages="$pkgname-doc" -source="http://downloads.sourceforge.net/project/joe-editor/JOE%20sources/$pkgname-$pkgver/$pkgname-$pkgver.tar.gz" - -_builddir="$srcdir"/$pkgname-$pkgver -prepare() { - local i - cd "$_builddir" - for i in $source; do - case $i in - *.patch) msg $i; patch -p1 -i "$srcdir"/$i || return 1;; - esac - done -} - -build() { - cd "$_builddir" - ./configure --prefix=/usr --sysconfdir=/etc || return 1 - make || return 1 -} - -package() { - cd "$_builddir" - make DESTDIR="$pkgdir" install - install -Dm644 COPYING "$pkgdir"/usr/share/licenses/$pkgname/COPYING -} - -md5sums="66de1b073e869ba12abbfcde3885c577 joe-3.7.tar.gz" - |