Date: Saturday, November 2, 2013 @ 14:15:23 Author: arodseth Revision: 100347
Minor changes Modified: dart/trunk/PKGBUILD ----------+ PKGBUILD | 18 +++++++++++------- 1 file changed, 11 insertions(+), 7 deletions(-) Modified: PKGBUILD =================================================================== --- PKGBUILD 2013-11-02 13:11:23 UTC (rev 100346) +++ PKGBUILD 2013-11-02 13:15:23 UTC (rev 100347) @@ -13,16 +13,20 @@ url='http://www.dartlang.org/' license=('BSD' 'EPL') depends=('java-runtime' 'gtk2' 'desktop-file-utils' 'gconf') -makedepends=('imagemagick' 'gendesk' 'setconf') +makedepends=('gendesk' 'setconf') backup=("opt/$pkgname/DartEditor.ini") options=('!strip') if [[ $CARCH == x86_64 ]]; then - source=("https://storage.googleapis.com/dart-editor-archive-integration/latest/darteditor-linux-64.zip") - sha256sums=('230d53fc95f873e4d2e7cd2377706693196dbfc154c80493d57cf409d2908d72') + source=("https://storage.googleapis.com/dart-editor-archive-integration/latest/darteditor-linux-64.zip" + 'darteditor.png::https://www.dartlang.org/tools/images/dart-logo-48.png') + sha256sums=('230d53fc95f873e4d2e7cd2377706693196dbfc154c80493d57cf409d2908d72' + 'd90f14b0cfa2dd36502ed5e5854466d54c8d0cf0ac9a5d9ec823274c1a33a00e') else - source=("https://storage.googleapis.com/dart-editor-archive-integration/latest/darteditor-linux-32.zip") - sha256sums=('4752ad56ca58611cf67474d3ebb979a2e5f26e477a3c508cf5847c7207e837a1') + source=("https://storage.googleapis.com/dart-editor-archive-integration/latest/darteditor-linux-32.zip" + 'darteditor.png::https://www.dartlang.org/tools/images/dart-logo-48.png') + sha256sums=('4752ad56ca58611cf67474d3ebb979a2e5f26e477a3c508cf5847c7207e837a1' + 'd90f14b0cfa2dd36502ed5e5854466d54c8d0cf0ac9a5d9ec823274c1a33a00e') fi prepare() { @@ -69,8 +73,8 @@ echo ln -s "/opt/$pkgname/DartEditor.ini" "$pkgdir/etc/darteditor.ini" # Package desktop shortcut and icon - install -Dm644 "darteditor.desktop" "$pkgdir/usr/share/applications/$pkgname.desktop" - convert "$pkgname/icon.xpm" "$pkgdir/usr/share/pixmaps/darteditor.png" + install -Dm644 'darteditor.desktop' "$pkgdir/usr/share/applications/$pkgname.desktop" + install -Dm644 '../darteditor.png' "$pkgdir/usr/share/pixmaps/darteditor.png" } # vim:set ts=2 sw=2 et:
