diff options
Diffstat (limited to 'community/tea')
-rw-r--r-- | community/tea/PKGBUILD | 37 | ||||
-rw-r--r-- | community/tea/tea.desktop | 10 | ||||
-rw-r--r-- | community/tea/tea.install | 4 |
3 files changed, 51 insertions, 0 deletions
diff --git a/community/tea/PKGBUILD b/community/tea/PKGBUILD new file mode 100644 index 000000000..c59f35493 --- /dev/null +++ b/community/tea/PKGBUILD @@ -0,0 +1,37 @@ +# $Id: PKGBUILD 44100 2011-04-02 12:07:14Z 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=29.0.0 +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://tea-editor.sourceforge.net/" +license=('GPL') +depends=('qt' 'aspell' 'hunspell') +install=tea.install +source=(http://downloads.sourceforge.net/tea-editor/$pkgname-$pkgver.tar.bz2 + tea.desktop) +md5sums=('06babb64e26f2a2c925d9e47f0a7b583' + '377ace3363124f4c086de0babb820761') + +build() { + cd ${srcdir}/$pkgname-$pkgver + + qmake + make + make INSTALL_ROOT=${pkgdir} install + + install -Dm755 ${pkgdir}/usr/local/bin/tea \ + ${pkgdir}/usr/bin/tea + rm -rf ${pkgdir}/usr/local + + install -Dm644 ${srcdir}/tea.desktop \ + ${pkgdir}/usr/share/applications/tea.desktop + install -Dm644 icons/tea_icon_v2.png \ + ${pkgdir}/usr/share/pixmaps/tea.png +} diff --git a/community/tea/tea.desktop b/community/tea/tea.desktop new file mode 100644 index 000000000..818704a26 --- /dev/null +++ b/community/tea/tea.desktop @@ -0,0 +1,10 @@ +[Desktop Entry] +Encoding=UTF-8 +Name=Tea +Comment=A small programmer's QT editor +Exec=tea %U +Terminal=false +Type=Application +StartupNotify=true +Icon=tea.png +Categories=Application;Utility;TextEditor; diff --git a/community/tea/tea.install b/community/tea/tea.install new file mode 100644 index 000000000..d7904254b --- /dev/null +++ b/community/tea/tea.install @@ -0,0 +1,4 @@ +post_upgrade() { + echo "############################################" + echo "for the old GTK branch of TEA install teagtk" +} |