blob: 717a174f7c5b9571ec4aa8e793e112da9b19242f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
|
# Maintainer (AUR): Davor Balder <dbalder@ozemail.com.au>
# Contributor (AUR): Jiyunatori <tori_LEAVETHISOUT_@0xc29.net>
# Contributor (AUR): mdev
# Maintainer : Parabola GNU / Linux-libre Aurelien Desbrieres <aurelien@hackers.camp>
# parabola changes and rationale:
# no changes.
pkgname=emacs-org-mode
_srcname=org
pkgver=9.0.5
pkgrel=0
pkgdesc="Emacs Org Mode"
arch=('any')
url="http://orgmode.org/"
depends=('emacs')
license=('GPL')
install=emacs-org-mode.install
source=("http://orgmode.org/$_srcname-$pkgver.tar.gz")
sha256sums=('e5bb3476190a5d42795c170c894c9dcb475587855bd535200cd7a2751e6e9869')
build() {
cd "$_srcname-$pkgver"
make compile
}
package() {
cd "$_srcname-$pkgver"
make prefix="$pkgdir/usr/share" install
## by default now we install also the contrib directory
install -d -m755 $pkgdir/usr/share/emacs/site-lisp/org_contrib
cp -r contrib/* $pkgdir/usr/share/emacs/site-lisp/org_contrib
##! proper install of info files (thanks mdev)
##! replace "orgmode" with "org" in the following lines if you want
##! to replace emacs own org's info files. You also need to change the .install.
install -D -m644 doc/org $pkgdir/usr/share/info/orgmode
gzip -9 $pkgdir/usr/share/info/orgmode
rm $pkgdir/usr/share/info/org
}
|