summaryrefslogtreecommitdiff
path: root/community/e3
diff options
context:
space:
mode:
authorroot <root@rshg054.dnsready.net>2013-07-19 01:10:32 -0700
committerroot <root@rshg054.dnsready.net>2013-07-19 01:10:32 -0700
commit8fbc0076a4827ddc6af92e0b9daa4c4c31450808 (patch)
tree03fd0e2921ebd53228d9a93e32ed3976b636cbea /community/e3
parente445a313723389ba9ee1fded025c567dae5b21ea (diff)
Fri Jul 19 01:09:18 PDT 2013
Diffstat (limited to 'community/e3')
-rw-r--r--community/e3/PKGBUILD35
1 files changed, 35 insertions, 0 deletions
diff --git a/community/e3/PKGBUILD b/community/e3/PKGBUILD
new file mode 100644
index 000000000..542a0c649
--- /dev/null
+++ b/community/e3/PKGBUILD
@@ -0,0 +1,35 @@
+# $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: