From 415856bdd4f48ab4f2732996f0bae58595092bbe Mon Sep 17 00:00:00 2001 From: Parabola Date: Tue, 5 Apr 2011 14:26:38 +0000 Subject: Tue Apr 5 14:26:38 UTC 2011 --- community/sigil/PKGBUILD | 48 +++++++++++++++++++++++++++++++++++++++++++ community/sigil/sigil.desktop | 10 +++++++++ community/sigil/sigil.install | 12 +++++++++++ 3 files changed, 70 insertions(+) create mode 100644 community/sigil/PKGBUILD create mode 100755 community/sigil/sigil.desktop create mode 100644 community/sigil/sigil.install (limited to 'community/sigil') diff --git a/community/sigil/PKGBUILD b/community/sigil/PKGBUILD new file mode 100644 index 000000000..612d07486 --- /dev/null +++ b/community/sigil/PKGBUILD @@ -0,0 +1,48 @@ +# $Id: PKGBUILD 37601 2011-01-15 09:55:00Z giovanni $ +# Maintainer: Giovanni Scafora +# Contributor: Larry Hajali + +pkgname=sigil +_pkgname=Sigil +pkgver=0.3.4 +pkgrel=1 +pkgdesc="A WYSIWYG ebook editor" +arch=('i686' 'x86_64') +url="http://code.google.com/p/sigil/" +license=('GPL3') +depends=('qt') +makedepends=('cmake') +install=sigil.install +source=(http://${pkgname}.googlecode.com/files/${_pkgname}-${pkgver}-Code.zip + ${pkgname}.desktop) +md5sums=('6f83a8ee12d6f5918fe50b8314e63760' + 'fef6aa492af487ccccd6b133635cee5a') + +build() { + cd ${_pkgname}-${pkgver}-Code + + mkdir build + cd build + cmake -G "Unix Makefiles" \ + -DCMAKE_INSTALL_PREFIX=/usr \ + -DCMAKE_C_FLAGS:STRING="${CFLAGS}" \ + -DCMAKE_CXX_FLAGS:STRING="${CXXFLAGS}" \ + -DCMAKE_BUILD_TYPE=Release \ + -DCMAKE_SKIP_RPATH=ON .. || return 1 + + make || return 1 +} + +package() { + cd ${_pkgname}-${pkgver}-Code/build + + make install DESTDIR="${pkgdir}" || return 1 + + install -d -m 0755 "${pkgdir}"/usr/share/applications || return 1 + install -m 0644 "${srcdir}"/${pkgname}.desktop "${pkgdir}"/usr/share/applications || return 1 + + for _pic in 16 32 48 128 256; do + install -D -m 0644 ../src/Sigil/Resource_Files/icon/app_icon_${_pic}.png \ + "${pkgdir}"/usr/share/icons/hicolor/${_pic}x${_pic}/apps/${pkgname}.png || return 1 + done +} diff --git a/community/sigil/sigil.desktop b/community/sigil/sigil.desktop new file mode 100755 index 000000000..4f3a14d20 --- /dev/null +++ b/community/sigil/sigil.desktop @@ -0,0 +1,10 @@ +[Desktop Entry] +Type=Application +Name=Sigil +Comment=E-book reader and WYSIWYG editor +TryExec=sigil +Exec=sigil +Icon=sigil +Categories=Office; +Terminal=false +StartupNotify=false diff --git a/community/sigil/sigil.install b/community/sigil/sigil.install new file mode 100644 index 000000000..ec506fa93 --- /dev/null +++ b/community/sigil/sigil.install @@ -0,0 +1,12 @@ +post_install() { + update-desktop-database -q + xdg-icon-resource forceupdate --theme hicolor &> /dev/null +} + +post_upgrade() { + post_install +} + +post_remove() { + post_install +} -- cgit v1.2.3-54-g00ecf