summarylogtreecommitdiffstats
diff options
context:
space:
mode:
authorhaawda2019-10-16 23:43:07 +0200
committerhaawda2019-10-16 23:43:07 +0200
commit8b47752f6803c69e220a7783fb098dc6fa16821b (patch)
tree2978664c112afdc1a6cf371bb7dc8d204fb1f279
parent32127d12784fef16ff8b23a37bf469a7525a010d (diff)
downloadaur-8b47752f6803c69e220a7783fb098dc6fa16821b.tar.gz
cleanup, fix typos
-rw-r--r--.SRCINFO4
-rw-r--r--PKGBUILD9
2 files changed, 7 insertions, 6 deletions
diff --git a/.SRCINFO b/.SRCINFO
index b83cb11f6989..94e31bc42928 100644
--- a/.SRCINFO
+++ b/.SRCINFO
@@ -1,14 +1,14 @@
pkgbase = emacs-goby
pkgdesc = WYSIWYG presentation tool, which runs on Emacs
pkgver = 1.1
- pkgrel = 2
+ pkgrel = 3
url = http://www.mew.org/~kazu/proj/goby/en/index.html
install = emacs-goby.install
arch = any
license = custom:BSD
depends = emacs
optdepends = netpbm: for using images
- optdepends = imagemagic6: for making screen dumps
+ optdepends = imagemagic: for making screen dumps
source = http://www.mew.org/~kazu/proj/goby/goby-1.1.tar.gz
source = LICENSE
sha256sums = 5050d9be02a8d466e3e46f35fce7e51263aa627519c9a16bea494aea542a47b6
diff --git a/PKGBUILD b/PKGBUILD
index a87f01981dfd..597df22cfc60 100644
--- a/PKGBUILD
+++ b/PKGBUILD
@@ -4,13 +4,13 @@
pkgname=emacs-goby
_srcname=goby
pkgver=1.1
-pkgrel=2
+pkgrel=3
pkgdesc="WYSIWYG presentation tool, which runs on Emacs"
arch=('any')
url="http://www.mew.org/~kazu/proj/goby/en/index.html"
license=('custom:BSD')
depends=('emacs')
-optdepends=('netpbm: for using images' 'imagemagic6: for making screen dumps')
+optdepends=('netpbm: for using images' 'imagemagic: for making screen dumps')
source=(http://www.mew.org/~kazu/proj/goby/$_srcname-$pkgver.tar.gz
LICENSE)
sha256sums=('5050d9be02a8d466e3e46f35fce7e51263aa627519c9a16bea494aea542a47b6'
@@ -18,12 +18,13 @@ sha256sums=('5050d9be02a8d466e3e46f35fce7e51263aa627519c9a16bea494aea542a47b6'
install=$pkgname.install
build() {
- cd $_srcname-$pkgver
+ cd ${_srcname}-$pkgver
make
}
package() {
- cd /$_srcname-$pkgver
+ cd ${_srcname}-$pkgver
+ install -d "$pkgdir"/usr/share/emacs/site-lisp/goby
install -Dm644 "$srcdir"/LICENSE "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
make PREFIX="$pkgdir"/usr install
}