summaryrefslogtreecommitdiff
path: root/community/tilda/PKGBUILD
diff options
context:
space:
mode:
authorroot <root@rshg054.dnsready.net>2013-08-13 01:33:19 -0700
committerroot <root@rshg054.dnsready.net>2013-08-13 01:33:19 -0700
commit7a65a910b77ad191d69881098c47f9b0c852d92e (patch)
tree9564e611af1442f8952a8cbddb3b0ad25ed71aab /community/tilda/PKGBUILD
parent60da6abff6c9577a783d72865f11de7a585e912e (diff)
Tue Aug 13 01:31:08 PDT 2013
Diffstat (limited to 'community/tilda/PKGBUILD')
-rw-r--r--community/tilda/PKGBUILD29
1 files changed, 29 insertions, 0 deletions
diff --git a/community/tilda/PKGBUILD b/community/tilda/PKGBUILD
new file mode 100644
index 000000000..787e5f40d
--- /dev/null
+++ b/community/tilda/PKGBUILD
@@ -0,0 +1,29 @@
+# $Id: PKGBUILD 95282 2013-08-08 19:28:31Z jlichtblau $
+# Maintainer: Jaroslav Lichtblau <dragonlord@aur.archlinux.org>
+# Contributor: Douglas Soares de Andrade <dsa@aur.archlinux.org>
+# Contributor: William Rea <sillywilly@gmail.com>
+
+pkgname=tilda
+pkgver=1.1.7
+pkgrel=1
+pkgdesc="A Gtk based drop down terminal for Linux and Unix"
+arch=('i686' 'x86_64')
+url="https://github.com/lanoxx/tilda"
+license=('GPL')
+depends=('vte3' 'confuse' 'gtk3')
+source=(https://github.com/lanoxx/$pkgname/archive/$pkgname-$pkgver.tar.gz)
+sha256sums=('ed96ae2cf0ceb2a5b2f4a62948c5c0d28d1d54f89ade5153b2e67515cf4dc5e7')
+
+build() {
+ cd $srcdir/$pkgname-$pkgname-$pkgver
+
+ ./autogen.sh
+ ./configure --prefix=/usr
+ make
+}
+
+package() {
+ cd $srcdir/$pkgname-$pkgname-$pkgver
+
+ make DESTDIR=${pkgdir} install
+}