summarylogtreecommitdiffstats
diff options
context:
space:
mode:
authorP.A. López-Valencia2016-03-13 10:04:41 -0500
committerP.A. López-Valencia2016-03-13 10:04:41 -0500
commitd2feb7151ba52905ab9d029da9cc979f1a76c7d1 (patch)
tree562a9a0a0a520c00057da24ea4e36dcfb36080d1
parentc2c25c89d96e65845fba7366bbd5bc0c5729573b (diff)
downloadaur-d2feb7151ba52905ab9d029da9cc979f1a76c7d1.tar.gz
Compile in a clean chroot created with devtools.
* Add *.log to .gitignore * Remove uneeded hard dependencies pulled in by GTK+ 3.
-rw-r--r--.SRCINFO11
-rw-r--r--.gitignore1
-rw-r--r--PKGBUILD9
3 files changed, 8 insertions, 13 deletions
diff --git a/.SRCINFO b/.SRCINFO
index c0d2367374b5..a959d84d1254 100644
--- a/.SRCINFO
+++ b/.SRCINFO
@@ -1,8 +1,8 @@
# Generated by mksrcinfo v8
-# Mon Feb 29 01:18:31 UTC 2016
+# Sun Mar 13 15:04:06 UTC 2016
pkgbase = emacs-git
pkgdesc = GNU Emacs. Master development branch.
- pkgver = 25.1.50.r125149
+ pkgver = 25.1.50.r125353
pkgrel = 1
url = http://www.gnu.org/software/emacs/
install = emacs-git.install
@@ -10,18 +10,13 @@ pkgbase = emacs-git
arch = x86_64
license = GPL
makedepends = git
- depends = librsvg
+ depends = gtk3
depends = gpm
depends = giflib
- depends = libxpm
- depends = libotf
depends = m17n-lib
- depends = gtk3
- depends = hicolor-icon-theme
depends = desktop-file-utils
depends = alsa-lib
depends = imagemagick
- depends = gnutls
provides = emacs
conflicts = emacs
source = emacs-git::git://git.savannah.gnu.org/emacs.git
diff --git a/.gitignore b/.gitignore
index e067b1759a78..d76289c72857 100644
--- a/.gitignore
+++ b/.gitignore
@@ -1,4 +1,5 @@
*~
+*.log
pkg/
src/
*.gz
diff --git a/PKGBUILD b/PKGBUILD
index b2b7bdfe6177..bbfd20f504ef 100644
--- a/PKGBUILD
+++ b/PKGBUILD
@@ -7,15 +7,13 @@
#
pkgname=emacs-git
-pkgver=25.1.50.r125149
+pkgver=25.1.50.r125353
pkgrel=1
pkgdesc="GNU Emacs. Master development branch."
arch=('i686' 'x86_64')
url="http://www.gnu.org/software/emacs/"
license=('GPL')
-depends=('librsvg' 'gpm' 'giflib' 'libxpm' 'libotf' 'm17n-lib'
- 'gtk3' 'hicolor-icon-theme' 'desktop-file-utils'
- 'alsa-lib' 'imagemagick' 'gnutls')
+depends=('gtk3' 'gpm' 'giflib' 'm17n-lib' 'desktop-file-utils' 'alsa-lib' 'imagemagick')
makedepends=('git')
conflicts=('emacs')
provides=('emacs')
@@ -54,7 +52,8 @@ build() {
--with-sound=alsa
--without-gconf
--with-x-toolkit=gtk3
- --with-xft)
+ --with-xft
+ --with-modules)
./configure ${_conf[@]}