summaryrefslogtreecommitdiff
path: root/community/pantheon-terminal/PKGBUILD
diff options
context:
space:
mode:
Diffstat (limited to 'community/pantheon-terminal/PKGBUILD')
-rw-r--r--community/pantheon-terminal/PKGBUILD35
1 files changed, 35 insertions, 0 deletions
diff --git a/community/pantheon-terminal/PKGBUILD b/community/pantheon-terminal/PKGBUILD
new file mode 100644
index 000000000..06579d00f
--- /dev/null
+++ b/community/pantheon-terminal/PKGBUILD
@@ -0,0 +1,35 @@
+# $Id: PKGBUILD 102538 2013-12-13 11:19:00Z alucryd $
+# Maintainer: alucryd <alucryd at gmail dot com>
+
+pkgname=pantheon-terminal
+pkgver=0.2.4.1
+pkgrel=3
+pkgdesc='The Pantheon Terminal Emulator'
+arch=('i686' 'x86_64')
+url="https://launchpad.net/${pkgname}"
+license=('GPL3')
+depends=('desktop-file-utils' 'granite' 'libnotify' 'vte3')
+makedepends=('cmake' 'vala')
+install="${pkgname}.install"
+source=("${url}/0.x/${pkgver}/+download/${pkgname}-${pkgver}.tgz")
+sha256sums=('0c03dc4023d3a78924d8b21658c62dd23ea0c93cd55af2f398686d28574dac04')
+
+build() {
+ cd ${pkgname}-${pkgver}
+
+ if [[ -d build ]]; then
+ rm -rf build
+ fi
+ mkdir build && cd build
+
+ cmake .. -DCMAKE_BUILD_TYPE='Release' -DCMAKE_INSTALL_PREFIX='/usr' -DGSETTINGS_COMPILE='OFF'
+ make
+}
+
+package() {
+ cd ${pkgname}-${pkgver}/build
+
+ make DESTDIR="${pkgdir}" install
+}
+
+# vim: ts=2 sw=2 et: