summaryrefslogtreecommitdiff
path: root/community/e3
diff options
context:
space:
mode:
authorroot <root@rshg054.dnsready.net>2013-08-11 01:21:34 -0700
committerroot <root@rshg054.dnsready.net>2013-08-11 01:21:34 -0700
commit18a41d682d6e91e0d28fce23eb75292f477bd620 (patch)
treebce8f660d7d0b6541cadbc49bf1bac2434e4c0c6 /community/e3
parent0ade1da67addf154d93c6a6399b0a3d5a18a3336 (diff)
Sun Aug 11 01:21:31 PDT 2013
Diffstat (limited to 'community/e3')
-rw-r--r--community/e3/PKGBUILD35
1 files changed, 0 insertions, 35 deletions
diff --git a/community/e3/PKGBUILD b/community/e3/PKGBUILD
deleted file mode 100644
index 542a0c649..000000000
--- a/community/e3/PKGBUILD
+++ /dev/null
@@ -1,35 +0,0 @@
-# $Id: PKGBUILD 64154 2012-02-09 14:16:08Z arodseth $
-# Maintainer: Alexander Rødseth <rodseth@gmail.com>
-# Contributor: Roberto Alsina <ralsina@kde.org>
-pkgname=e3
-pkgver=2.8
-pkgrel=3
-pkgdesc="Editor written in assembly. Tiny, with no library dependencies."
-arch=('x86_64' 'i686')
-url="http://sites.google.com/site/e3editor/"
-license=('GPL2')
-makedepends=('nasm')
-options=('!strip')
-source=("http://sites.google.com/site/e3editor/Home/$pkgname-$pkgver.tgz")
-sha256sums=('035737d0cc82b287386fdff8682b2c23ef620d7ef97dff7a1b1fe1777e4c4fb7')
-
-build() {
- cd "$srcdir/$pkgname-$pkgver"
-
- sed -i 's:$(BINDIR)/e3 :e3 :' Makefile
- make clean
- if [ "$CARCH" == "i686" ]; then
- make EXMODE=_ 32
- else
- make EXMODE=_ 64
- fi
-}
-
-package() {
- cd "$srcdir/$pkgname-$pkgver"
-
- make PREFIX="$pkgdir/usr" MANDIR="$pkgdir/usr/share/man/man1" install
- install -Dm644 COPYING.GPL "$pkgdir/usr/share/licenses/$pkgname/COPYING"
-}
-
-# vim:set ts=2 sw=2 et: