aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJohannes Löthberg <johannes@kyriasis.com>2014-08-04 18:10:35 +0200
committerJohannes Löthberg <johannes@kyriasis.com>2015-06-01 16:03:41 +0200
commit170553573b52f07075c8b8de92fba8bab6bcc87f (patch)
tree9daa4ce2065250ab0052bbbee384407f91a89ff3
parenta848f92e72519ff100b18064067ebd134d6aa891 (diff)
downloadpkgbuilds-170553573b52f07075c8b8de92fba8bab6bcc87f.tar.xz
Clean up PKGBUILDs
-rw-r--r--.SRCINFO7
-rw-r--r--PKGBUILD30
2 files changed, 19 insertions, 18 deletions
diff --git a/.SRCINFO b/.SRCINFO
index d60e803..1698114 100644
--- a/.SRCINFO
+++ b/.SRCINFO
@@ -1,8 +1,8 @@
# Generated by makepkg 4.2.1
-# Mon Jun 1 14:56:05 UTC 2015
+# Mon Jun 1 14:56:06 UTC 2015
pkgbase = weechat-git
pkgdesc = Fast, light & extensible IRC client (curses UI)
- pkgver = git
+ pkgver = 1.0.rc1.r5.gb62705a
pkgrel = 1
url = http://www.weechat.org/
arch = i686
@@ -29,6 +29,9 @@ pkgbase = weechat-git
provides = weechat
conflicts = weechat
options = !libtool
+ options = debug
+ options = !makeflags
+ options = strip
source = git+https://github.com/weechat/weechat.git
md5sums = SKIP
diff --git a/PKGBUILD b/PKGBUILD
index 8d1f9dc..044f90a 100644
--- a/PKGBUILD
+++ b/PKGBUILD
@@ -1,23 +1,21 @@
-# Maintainer: Daniel Wallace <danielwallace at gtmanfred dot com>
-# Contributor: Dmitry Korzhevin <dkorzhevin AT gmail DOT com>
-# Contributor: Mark Foxwell <fastfret79@archlinux.org.uk>
-# Contributor: Licia Todd <tigrmesh at aol dot com>
-# Contributor: Tim Zebulla <amon at faumrahrer dot de>
-# Contributor: Johannes Löthberg <johannes@kyriasis.com>
-
pkgname=weechat-git
-pkgver=git
+pkgver=1.0.rc1.r5.gb62705a
pkgrel=1
+
pkgdesc="Fast, light & extensible IRC client (curses UI)"
-arch=('i686' 'x86_64')
url="http://www.weechat.org/"
+arch=('i686' 'x86_64')
license=('GPL3')
+
depends=('gnutls' 'ncurses' 'libgcrypt')
-makedepends=('git' 'cmake' 'pkgconfig' 'perl' 'python2' 'lua' 'tcl' 'ruby' 'aspell')
optdepends=('perl' 'python2' 'lua' 'tcl' 'ruby' 'aspell')
+makedepends=('git' 'cmake' 'pkgconfig' 'perl' 'python2' 'lua' 'tcl' 'ruby' 'aspell')
+
provides=('weechat')
conflicts=('weechat')
-options=(!libtool)
+
+options=(!libtool debug !makeflags strip)
+
source=("git+https://github.com/weechat/weechat.git")
md5sums=('SKIP')
@@ -29,11 +27,11 @@ pkgver(){
build() {
cd weechat
cmake -DPREFIX=/usr \
- -DPYTHON_EXECUTABLE=/usr/bin/python2 \
- -DPYTHON_LIBRARY=/usr/lib/libpython2.7.so\
- -DENABLE_MAN=ON \
- -DENABLE_DOC=OFF \
- -DWEECHAT_HOME=~/.config/weechat
+ -DPYTHON_EXECUTABLE=/usr/bin/python2 \
+ -DPYTHON_LIBRARY=/usr/lib/libpython2.7.so\
+ -DENABLE_MAN=ON \
+ -DENABLE_DOC=OFF \
+ -DWEECHAT_HOME=~/.config/weechat
make
}