summaryrefslogtreecommitdiff
path: root/community/e3/PKGBUILD
diff options
context:
space:
mode:
Diffstat (limited to 'community/e3/PKGBUILD')
-rw-r--r--community/e3/PKGBUILD12
1 files changed, 6 insertions, 6 deletions
diff --git a/community/e3/PKGBUILD b/community/e3/PKGBUILD
index 542a0c649..ee69bbc94 100644
--- a/community/e3/PKGBUILD
+++ b/community/e3/PKGBUILD
@@ -1,12 +1,13 @@
-# $Id: PKGBUILD 64154 2012-02-09 14:16:08Z arodseth $
+# $Id: PKGBUILD 95666 2013-08-15 11:52:34Z 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."
+pkgrel=4
+pkgdesc='Tiny editor without dependencies, written in assembly'
arch=('x86_64' 'i686')
-url="http://sites.google.com/site/e3editor/"
+url='http://sites.google.com/site/e3editor/'
license=('GPL2')
makedepends=('nasm')
options=('!strip')
@@ -18,7 +19,7 @@ build() {
sed -i 's:$(BINDIR)/e3 :e3 :' Makefile
make clean
- if [ "$CARCH" == "i686" ]; then
+ if [ "$CARCH" = "i686" ]; then
make EXMODE=_ 32
else
make EXMODE=_ 64
@@ -29,7 +30,6 @@ 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: