summaryrefslogtreecommitdiff
path: root/community/sakura/PKGBUILD
diff options
context:
space:
mode:
authorroot <root@rshg054.dnsready.net>2013-07-17 00:58:52 -0700
committerroot <root@rshg054.dnsready.net>2013-07-17 00:58:52 -0700
commitdee9f17b595ea903a982d31d1124b302bb17e2ff (patch)
tree295fdab78e28e1952fbc13ce824d57c88ede4e3b /community/sakura/PKGBUILD
parent380530d02a5449fdef97b63b394a6743c3de0092 (diff)
Wed Jul 17 00:58:51 PDT 2013
Diffstat (limited to 'community/sakura/PKGBUILD')
-rw-r--r--community/sakura/PKGBUILD38
1 files changed, 0 insertions, 38 deletions
diff --git a/community/sakura/PKGBUILD b/community/sakura/PKGBUILD
deleted file mode 100644
index 4aff8641e..000000000
--- a/community/sakura/PKGBUILD
+++ /dev/null
@@ -1,38 +0,0 @@
-# $Id: PKGBUILD 93276 2013-07-01 04:10:57Z angvp $
-# Maintainer: Ronald van Haren <ronald.archlinux.org>
-# Contributor: Dmitry N. Shilov <stormblast@land.ru>
-
-pkgname=sakura
-pkgver=3.1.0
-pkgrel=1
-pkgdesc="A terminal emulator based on GTK and VTE"
-arch=('i686' 'x86_64')
-url="https://launchpad.net/sakura"
-license=('GPL')
-depends=('vte3' 'libxft' 'desktop-file-utils')
-makedepends=('cmake')
-source=("https://launchpad.net/sakura/trunk/${pkgver}/+download/${pkgname}-${pkgver}.tar.bz2")
-install=sakura.install
-sha1sums=('159abc2f83e912da1bfb35c9b239b092e78a044f')
-
-build() {
- cd $srcdir/${pkgname}-${pkgver}
-
- # Set default font size a bit smaller
- sed -i 's|#define DEFAULT_FONT "Bitstream Vera Sans Mono 14"|#define DEFAULT_FONT "Bitstream Vera Sans Mono 10"|g' src/sakura.c
-
- # build & install
- cmake -DCMAKE_INSTALL_PREFIX=/usr -DCMAKE_BUILD_TYPE=RELEASE .
- make
-}
-
-package() {
- cd $srcdir/${pkgname}-${pkgver}
-
- make DESTDIR=${pkgdir} install
- # extract the keybindings from the installed documentation, rest is only relevant during build time
- awk '/^Keybindings/{f="'${pkgdir}'/usr/share/doc/'${pkgname}'/KEYBINDINGS"} f{print > f} /^END/' \
- ${pkgdir}/usr/share/doc/${pkgname}/INSTALL
- rm ${pkgdir}/usr/share/doc/${pkgname}/INSTALL
-}
-