diff options
author | Alexander F. Rødseth | 2019-03-27 10:18:16 +0100 |
---|---|---|
committer | Alexander F. Rødseth | 2019-03-27 10:18:16 +0100 |
commit | f00312f6ba17441e7bd8122bff7321b68c8be294 (patch) | |
tree | 282d624fa4304ec1a364819fa5ab938bc36a44e2 /PKGBUILD | |
download | aur-f00312f6ba17441e7bd8122bff7321b68c8be294.tar.gz |
Move from [community] to AUR in connection with the spring cleaning
Diffstat (limited to 'PKGBUILD')
-rw-r--r-- | PKGBUILD | 33 |
1 files changed, 33 insertions, 0 deletions
diff --git a/PKGBUILD b/PKGBUILD new file mode 100644 index 000000000000..f103e8887a4a --- /dev/null +++ b/PKGBUILD @@ -0,0 +1,33 @@ +# Maintainer: +# Contributor: Eric Bélanger <eric@archlinux.org> + +pkgname=auctex +pkgver=12.1 +pkgrel=1 +pkgdesc="An extensible package for writing and formatting TeX files in Emacs" +arch=('any') +url="http://www.gnu.org/software/auctex/" +license=('GPL3') +depends=('emacs' 'ghostscript' 'texlive-core') +options=('!makeflags') +install=auctex.install +source=(https://ftp.gnu.org/pub/gnu/auctex/${pkgname}-${pkgver}.tar.gz{,.sig}) +sha1sums=('7744738f59fbb0862edb89eb2d47920b0f94c18b' + 'SKIP') +validpgpkeys=('70CDE487C45540307F86972BE2FD58BF20485F50') + +prepare() { + cd ${pkgname}-${pkgver} + sed -i 's/as_fn_error $? "--with-texmf-dir=/echo as_fn_error $? "--with-texmf-dir=/' configure +} + +build() { + cd ${pkgname}-${pkgver} + ./configure --prefix=/usr --localstatedir=/var --with-texmf-dir=/usr/share/texmf + make +} + +package() { + cd ${pkgname}-${pkgver} + make DESTDIR="${pkgdir}" install +} |