diff options
Diffstat (limited to 'community/tea/PKGBUILD')
-rw-r--r-- | community/tea/PKGBUILD | 34 |
1 files changed, 34 insertions, 0 deletions
diff --git a/community/tea/PKGBUILD b/community/tea/PKGBUILD new file mode 100644 index 000000000..0c234c9f6 --- /dev/null +++ b/community/tea/PKGBUILD @@ -0,0 +1,34 @@ +# $Id: PKGBUILD 93973 2013-07-12 10:33:33Z spupykin $ +# Maintainer: Sergej Pupykin <pupykin.s+arch@gmail.com> +# Maintainer: Andrea Scarpino <andrea@archlinux.org> +# Contributor: Roman Kyrylych <roman@archlinux.org> +# Contributor: Michal Kaliszka <desmont@gmail.com> +# Contributor: Zsolt Varadi <sysop_xxl@fibermail.hu> + +pkgname=tea +pkgver=36.0.2 +pkgrel=1 +pkgdesc="A QT-based text editor for Linux and *BSD. With an ultimate small size TEA provides you hundreds of functions." +arch=('i686' 'x86_64') +url="http://semiletov.org/tea/" +license=('GPL') +depends=('qt4' 'aspell' 'hunspell') +install=tea.install +source=(http://semiletov.org/tea/dloads/tea-$pkgver.tar.bz2 + tea.desktop) +md5sums=('c8657c664af35d2032a78c645cb38d16' + '377ace3363124f4c086de0babb820761') + +build() { + cd "${srcdir}/${pkgname}-${pkgver}" + sed -i 's|i + j|(int)(i + j)|' textproc.cpp + qmake-qt4 PREFIX=/usr/bin + make +} + +package(){ + cd "${srcdir}/${pkgname}-${pkgver}" + make INSTALL_ROOT="${pkgdir}" install + install -Dm644 "${srcdir}/tea.desktop" "${pkgdir}/usr/share/applications/tea.desktop" + install -Dm644 icons/tea_icon_v2.png "${pkgdir}/usr/share/pixmaps/tea.png" +} |