diff options
Diffstat (limited to 'community/sakura/PKGBUILD')
-rw-r--r-- | community/sakura/PKGBUILD | 38 |
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 -} - |