summaryrefslogtreecommitdiff
path: root/pcr
diff options
context:
space:
mode:
authorLuke Shumaker <lukeshu@sbcglobal.net>2016-04-18 01:05:10 -0400
committerLuke Shumaker <lukeshu@sbcglobal.net>2016-04-18 01:05:10 -0400
commitdfdf57f3630f467483ecbead5b9b1e40e205ac28 (patch)
treee1adb72e550833652943e67f26d49a5959dccfd0 /pcr
parentf55047c88ab14cc84d1dbcdadc7eb756810968e5 (diff)
add pcr/emacs-tramp
Diffstat (limited to 'pcr')
-rw-r--r--pcr/emacs-tramp/PKGBUILD26
1 files changed, 26 insertions, 0 deletions
diff --git a/pcr/emacs-tramp/PKGBUILD b/pcr/emacs-tramp/PKGBUILD
new file mode 100644
index 000000000..0ea113cdb
--- /dev/null
+++ b/pcr/emacs-tramp/PKGBUILD
@@ -0,0 +1,26 @@
+# Maintainer: Luke Shumaker
+
+pkgname=emacs-tramp
+pkgver=2.2.13
+depends=(emacs)
+pkgdesc='A more recent version of the TRAMP package for Emacs'
+url=http://www.gnu.org/software/tramp/
+license=(GPL3)
+source=(ftp://ftp.gnu.org/gnu/tramp/tramp-$pkgver.tar.gz{,.sig})
+validpgpkeys=('C9A04D6E84B6DB548F4585A2AC966DC9E3E1AECA') # Michael Albinus
+md5sums=('de44002a60882aa89dd61e59ae0d7939'
+ 'SKIP')
+
+pkgrel=1
+arch=(any)
+
+build() {
+ cd tramp-$pkgver
+ ./configure --prefix=/usr --with-contrib
+ make
+}
+
+package() {
+ cd tramp-$pkgver
+ make install DESTDIR="$pkgdir"
+}