diff options
author | haawda | 2019-07-19 04:11:38 +0200 |
---|---|---|
committer | haawda | 2019-07-19 04:11:38 +0200 |
commit | cf4c07cbd1e4d067781a93c7c94cc22b86695f12 (patch) | |
tree | 6c49faa811a34c481e1ddf16ccb52e22fc932af2 | |
parent | 212efe0b235d4acb875f1e5045f61641ef67c5bb (diff) | |
download | aur-emacs-rtf-mode.tar.gz |
use sha256 sum
-rw-r--r-- | .SRCINFO | 4 | ||||
-rw-r--r-- | PKGBUILD | 17 |
2 files changed, 11 insertions, 10 deletions
@@ -1,13 +1,13 @@ pkgbase = emacs-rtf-mode pkgdesc = Emacs mode for viewing/editing RTF files pkgver = 1.1 - pkgrel = 2 + pkgrel = 3 url = http://www.emacswiki.org/emacs/rtf-mode.el arch = any license = GPL depends = emacs source = http://www.emacswiki.org/emacs/download/rtf-mode.el - md5sums = e03cfb1b4176e4795b1d36cfea6d1acc + sha256sums = aeac654763ba336dbf8efb312e19a7b52db07bb3f7ee18d861556ba9a3def57f pkgname = emacs-rtf-mode @@ -1,23 +1,24 @@ -# Maintainer: Nathan Owe <nathan.aur at gmail dot com> +# Contributor: Nathan Owe <nathan.aur at gmail dot com> +# Maintainer: Stefan Husmann <stefan-husmann@t-online.de> + pkgname=emacs-rtf-mode pkgver=1.1 -pkgrel=2 +pkgrel=3 pkgdesc="Emacs mode for viewing/editing RTF files" arch=('any') url="http://www.emacswiki.org/emacs/rtf-mode.el" license=('GPL') depends=('emacs') source=("http://www.emacswiki.org/emacs/download/rtf-mode.el") -md5sums=('e03cfb1b4176e4795b1d36cfea6d1acc') +sha256sums=('aeac654763ba336dbf8efb312e19a7b52db07bb3f7ee18d861556ba9a3def57f') build() { - cd "$srcdir/" emacs -batch -f batch-byte-compile rtf-mode.el - } +} + package() { - cd "$srcdir/" install -Dm644 rtf-mode.el \ - "$pkgdir/usr/share/emacs/site-lisp/rtf-mode.el" + "$pkgdir"/usr/share/emacs/site-lisp/rtf-mode.el install -Dm644 rtf-mode.elc \ - "$pkgdir/usr/share/emacs/site-lisp/rtf-mode.elc" + "$pkgdir"/usr/share/emacs/site-lisp/rtf-mode.elc } |