# Contributor: Patrick Palka # Contributor: Fabio Pozzim # Contributor: Nathan Owe # Maintainer: Stefan Husmann pkgname=tramp pkgver=2.3.3 pkgrel=2 pkgdesc="emacs extension that provides transparent remote file editing" arch=('any') url=http://www.gnu.org/software/tramp/ license=('GPL') makedepends=('emacs' 'texinfo') # add texlive-core to the makedepends and comment in the last two lines # of this PKGBUILD if you want the documentation in dvi-format source=("ftp://ftp.gnu.org/gnu/tramp/$pkgname-$pkgver.tar.gz"{,.sig}) sha256sums=('7346f0899964414c65ca8833247c10dd83f65b855008a87802833b646899db75' 'SKIP') validpgpkeys=('C9A04D6E84B6DB548F4585A2AC966DC9E3E1AECA') # Michael Albinus prepare() { cd $pkgname-$pkgver/texi [[ -L texinfo.tex ]] || ln -s /usr/share/automake-1.15/texinfo.tex texinfo.tex } build() { cd $pkgname-$pkgver ./configure --prefix=/usr --with-contrib make } package() { cd $pkgname-$pkgver make DESTDIR="$pkgdir" install mv $pkgdir/usr/share/info/$pkgname $pkgdir/usr/share/info/$pkgname-new # install -Dm644 texi/$pkgname.dvi \ # $pkgdir/usr/share/doc/$pkgname/$pkgname.dvi }