Date: Sunday, March 6, 2016 @ 14:30:39 Author: arodseth Revision: 165361
Move howl-editor from AUR Added: howl/ howl/repos/ howl/repos/community-i686/ howl/repos/community-x86_64/ howl/trunk/ howl/trunk/PKGBUILD howl/trunk/howl.install --------------+ PKGBUILD | 28 ++++++++++++++++++++++++++++ howl.install | 12 ++++++++++++ 2 files changed, 40 insertions(+) Added: howl/trunk/PKGBUILD =================================================================== --- howl/trunk/PKGBUILD (rev 0) +++ howl/trunk/PKGBUILD 2016-03-06 13:30:39 UTC (rev 165361) @@ -0,0 +1,28 @@ +# $Id$ +# Maintainer: Alexander F Rødseth <[email protected]> +# Contributor: Bartłomiej Piotrowski <[email protected]> +# Contributor: Stefan Husmann <[email protected]> + +pkgname=howl +pkgver=0.3 +pkgrel=1 +pkgdesc='General purpose, light-weight customizable editor' +arch=('x86_64' 'i686') +url='http://howl.io/' +license=('MIT') +depends=('gtk3' 'desktop-file-utils') +install=howl.install +source=("https://github.com/howl-editor/howl/releases/download/$pkgver/howl-$pkgver.tgz") +sha256sums=('a0c8f24f0ea90aad5ce008c0091578998a07dd00897a3c02e138b175e81f3297') + +build() { + make -C "howl-$pkgver/src" +} + +package() { + make -C "howl-$pkgver/src" PREFIX=/usr DESTDIR="$pkgdir" install + install -Dm644 "howl-$pkgver/LICENSE.md" \ + "$pkgdir/usr/share/licenses/$pkgname/LICENSE.md" +} + +# vim:set ts=2 sw=2 et: Property changes on: howl/trunk/PKGBUILD ___________________________________________________________________ Added: svn:keywords ## -0,0 +1 ## +Id \ No newline at end of property Added: howl/trunk/howl.install =================================================================== --- howl/trunk/howl.install (rev 0) +++ howl/trunk/howl.install 2016-03-06 13:30:39 UTC (rev 165361) @@ -0,0 +1,12 @@ +post_install() { + gtk-update-icon-cache -q -t -f usr/share/icons/hicolor + update-desktop-database -q +} + +post_upgrade() { + post_install +} + +post_remove() { + post_install +}
