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
commit9642a9a201e0b22d879de8304989ab5ad3cda787 (patch)
tree8ccc683bb89108a731d32e6ef177d188a4891dc7
parent471ab7db96c06448f1248ea3e0d4b8339b11e24e (diff)
downloadpkgbuilds-9642a9a201e0b22d879de8304989ab5ad3cda787.tar.xz
Clean up PKGBUILDs
-rw-r--r--.SRCINFO2
-rw-r--r--PKGBUILD43
2 files changed, 24 insertions, 21 deletions
diff --git a/.SRCINFO b/.SRCINFO
index 83f7cff..ccadf50 100644
--- a/.SRCINFO
+++ b/.SRCINFO
@@ -2,7 +2,7 @@
# Mon Jun 1 14:56:20 UTC 2015
pkgbase = vte3-select-text-git
pkgdesc = Virtual Terminal Emulator widget for use with GTK3
- pkgver = git
+ pkgver = 0.36.2.r13.g2991e7a
pkgrel = 1
url = http://www.gnome.org
arch = i686
diff --git a/PKGBUILD b/PKGBUILD
index ab8ed58..d0cebb6 100644
--- a/PKGBUILD
+++ b/PKGBUILD
@@ -1,11 +1,11 @@
pkgname=vte3-select-text-git
-pkgver=git
+pkgver=0.36.2.r13.g2991e7a
pkgrel=1
pkgdesc="Virtual Terminal Emulator widget for use with GTK3"
+url="http://www.gnome.org"
arch=('i686' 'x86_64')
license=('LGPL')
-url="http://www.gnome.org"
options=('!libtool' '!emptydirs')
@@ -16,33 +16,36 @@ provides=('vte3')
conflicts=('vte3' 'vte3-select-text')
source=('expose_select_text.patch'
- 'git://git.gnome.org/vte#branch=vte-0-36')
-sha256sums=('37fc0ecd4939c3b14f36dace31b54507e0f1cf1fc95a07ae079b1997d0481d7e'\
- 'SKIP')
+ 'git://git.gnome.org/vte#branch=vte-0-36')
+sha256sums=('37fc0ecd4939c3b14f36dace31b54507e0f1cf1fc95a07ae079b1997d0481d7e'
+ 'SKIP')
pkgver() {
- cd vte
- git describe | sed 's/-/.r/; s/-/./'
+ cd vte
+ git describe | sed 's/-/.r/; s/-/./'
}
prepare() {
- cd vte
- patch -p1 -i "$srcdir"/expose_select_text.patch
+ cd vte
+ patch -p1 -i "$srcdir"/expose_select_text.patch
}
build() {
- cd vte
- ./autogen.sh
- ./configure --prefix=/usr \
- --sysconfdir=/etc \
- --enable-introspection \
- --libexecdir=/usr/lib/vte \
- --localstatedir=/var --disable-static
- make
+ cd vte
+
+ ./autogen.sh
+ ./configure \
+ --prefix=/usr \
+ --sysconfdir=/etc \
+ --enable-introspection \
+ --libexecdir=/usr/lib/vte \
+ --localstatedir=/var --disable-static
+ make
}
package() {
- cd vte
- make DESTDIR="$pkgdir" install
- rm "$pkgdir"/usr/lib/vte/gnome-pty-helper
+ cd vte
+
+ make DESTDIR="$pkgdir" install
+ rm "$pkgdir"/usr/lib/vte/gnome-pty-helper
}