X-Original-To: alpine-aports@mail.alpinelinux.org Delivered-To: alpine-aports@mail.alpinelinux.org Received: from mail.alpinelinux.org (dallas-a1.alpinelinux.org [127.0.0.1]) by mail.alpinelinux.org (Postfix) with ESMTP id D3AA0DC029C for ; Fri, 12 Jun 2015 15:55:10 +0000 (UTC) Received: from st11p00im-asmtp002.me.com (st11p00im-amstp002.me.com [17.172.80.96]) (using TLSv1 with cipher DHE-RSA-AES128-SHA (128/128 bits)) (No client certificate requested) by mail.alpinelinux.org (Postfix) with ESMTPS id B62CEDC016A for ; Fri, 12 Jun 2015 15:55:05 +0000 (UTC) Received: from st.ilet.to (st.ilet.to [31.193.133.175]) by st11p00im-asmtp002.me.com (Oracle Communications Messaging Server 7.0.5.35.0 64bit (built Dec 4 2014)) with ESMTPSA id <0NPU00EV59JRAY20@st11p00im-asmtp002.me.com> for alpine-aports@lists.alpinelinux.org; Fri, 12 Jun 2015 15:55:05 +0000 (GMT) X-Proofpoint-Virus-Version: vendor=fsecure engine=2.50.10432:5.14.151,1.0.33,0.0.0000 definitions=2015-06-12_03:2015-06-11,2015-06-12,1970-01-01 signatures=0 X-Proofpoint-Spam-Details: rule=notspam policy=default score=0 spamscore=0 suspectscore=0 phishscore=0 adultscore=0 bulkscore=0 classifier=spam adjust=0 reason=mlx scancount=1 engine=7.0.1-1412110000 definitions=main-1506120274 Date: Fri, 12 Jun 2015 15:55:00 +0000 (UTC) From: ScrumpyJack X-X-Sender: nicholas@st.ilet.to To: Alpine Aports List Subject: [alpine-aports] [PATCH] testing/gtksourceview3: new aport Message-id: User-Agent: Alpine 2.20 (LNX 67 2015-01-07) X-Mailinglist: alpine-aports Precedence: list List-Id: Alpine Development List-Unsubscribe: List-Post: List-Help: List-Subscribe: MIME-version: 1.0 Content-type: text/plain; charset=US-ASCII X-Virus-Scanned: ClamAV using ClamSMTP A text widget adding syntax highlighting and more to GNOME http://live.gnome.org/GtkSourceView APKBUILD file shamelessly copied from ncopa's gtksourceview2 --- testing/gtksourceview3/APKBUILD | 40 ++++++++++++++++++++++++++++++++++++++++ 1 file changed, 40 insertions(+) create mode 100644 testing/gtksourceview3/APKBUILD diff --git a/testing/gtksourceview3/APKBUILD b/testing/gtksourceview3/APKBUILD new file mode 100644 index 0000000..2dd6f06 --- /dev/null +++ b/testing/gtksourceview3/APKBUILD @@ -0,0 +1,40 @@ +# Maintainer: Natanael Copa +pkgname=gtksourceview3 +pkgver=3.17.2 +pkgrel=0 +pkgdesc="A text widget adding syntax highlighting and more to GNOME" +url="http://live.gnome.org/GtkSourceView" +arch="all" +license="GPL" +replaces="gtksourceview" +depends= +depends_dev="gtk+3.0-dev libxml2-dev" +makedepends="$depends_dev gobject-introspection-dev" +subpackages="$pkgname-dev $pkgname-doc $pkgname-lang" +source="http://ftp.gnome.org/pub/gnome/sources/gtksourceview/${pkgver%.*}/gtksourceview-$pkgver.tar.xz" + +_builddir="$srcdir/gtksourceview-$pkgver" + +prepare() { + cd "$_builddir" +} + +build() { + cd "$_builddir" + ./configure \ + --prefix=/usr \ + --sysconfdir=/etc \ + --localstatedir=/var \ + --disable-static \ + || return 1 + make || return 1 +} + +package() { + cd "$_builddir" + make DESTDIR="$pkgdir" install || return 1 + find "$pkgdir" -name '*.la' -delete +} +md5sums="3849057f94f9e1847035efb1334c2261 gtksourceview-3.17.2.tar.xz" +sha256sums="c443f6ef0dfda93be27aef43bb4dbafdb5cffcac2971d9dbcf025d9c8fd2733c gtksourceview-3.17.2.tar.xz" +sha512sums="b9caebee9152ac2c8742d2af09725e6f9a63bd174f503377b1e2feb19fe11f0687da1256dd03fc5c742c1625088c61ed1ec9423a4fdd5f582fe45a4d497ce482 gtksourceview-3.17.2.tar.xz" -- 2.4.3 --- Unsubscribe: alpine-aports+unsubscribe@lists.alpinelinux.org Help: alpine-aports+help@lists.alpinelinux.org ---