blob: 2a459a1ee5abd2a6e6ce86d7c8b9baba721f314f (
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
|
# Contributor: L42y <423300@gmail.com>
# Maintainer: Stefan Husmann <stefan-husmann@t-online.de>
pkgname=emacs-mew-git
pkgver=6.8.11.g91a78fd
pkgrel=1
arch=('x86_64' 'i686')
pkgdesc="Messaging in the Emacs World"
url="http://www.mew.org/"
license=('custom')
depends=('emacs')
optdepends=('ruby')
conflicts=('emacs-mew')
provides=('emacs-mew')
source=('mew-git::git://github.com/kazu-yamamoto/Mew.git')
md5sums=('SKIP')
pkgver() {
cd ${pkgname#emacs-}
# Git tag
echo $(git describe --tags|sed 's/-/./g'|tr -d v)
}
build() {
cd ${pkgname#emacs-}
./configure --prefix=/usr
}
package() {
cd ${pkgname#emacs-}
make DESTDIR="$pkgdir/" install
install -D -m644 00copyright \
"$pkgdir"/usr/share/licenses/emacs-mew-git/00copyright
}
|