Date: Wednesday, March 14, 2018 @ 19:23:03
Author: heftig
Revision: 319053
archrelease: copy trunk to gnome-unstable-x86_64
Added:
gedit-plugins/repos/gnome-unstable-x86_64/
gedit-plugins/repos/gnome-unstable-x86_64/PKGBUILD
(from rev 319052, gedit-plugins/trunk/PKGBUILD)
----------+
PKGBUILD | 46 ++++++++++++++++++++++++++++++++++++++++++++++
1 file changed, 46 insertions(+)
Copied: gedit-plugins/repos/gnome-unstable-x86_64/PKGBUILD (from rev 319052,
gedit-plugins/trunk/PKGBUILD)
===================================================================
--- gnome-unstable-x86_64/PKGBUILD (rev 0)
+++ gnome-unstable-x86_64/PKGBUILD 2018-03-14 19:23:03 UTC (rev 319053)
@@ -0,0 +1,46 @@
+# $Id$
+# Maintainer: Ionut Biru <[email protected]>
+# Contributor: Alexander Rødseth <[email protected]>
+# Contributor: Hugo Doria <[email protected]>
+# Contributor: Sergej Chodarev <[email protected]>
+# Contributor: zhuqin <[email protected]>
+
+pkgname=gedit-plugins
+pkgver=3.28.0+1+g94f1400
+pkgrel=1
+pkgdesc="Collection of plugins for the gedit Text Editor"
+url="https://wiki.gnome.org/Apps/Gedit/ShippedPlugins"
+arch=(x86_64)
+license=(GPL)
+depends=(gedit python-dbus python-cairo)
+makedepends=(intltool vte3 libgit2-glib itstool gucharmap
gobject-introspection vala yelp-tools git)
+optdepends=('gucharmap: for charmap plugin'
+ 'vte3: for embedded terminal'
+ 'libgit2-glib: for git plugin')
+_commit=94f14008b5f28484a9ac92bc90ab377049358d63 # master
+source=("git+https://git.gnome.org/browse/gedit-plugins#commit=$_commit")
+sha256sums=('SKIP')
+
+pkgver() {
+ cd $pkgname
+ git describe --tags | sed 's/-/+/g'
+}
+
+prepare() {
+ cd $pkgname
+ NOCONFIGURE=1 ./autogen.sh
+}
+
+build() {
+ cd $pkgname
+ ./configure --prefix=/usr --sysconfdir=/etc --disable-schemas-compile
+ sed -i -e 's/ -shared / -Wl,-O1,--as-needed\0/g' libtool
+ make
+}
+
+package() {
+ cd $pkgname
+ make DESTDIR=$pkgdir install
+}
+
+# vim:set ts=2 sw=2 et: