Date: Saturday, November 2, 2013 @ 14:03:15 Author: arodseth Revision: 100343
Adding the dart SDK and editor Added: dart/ dart/repos/ dart/repos/community-i686/ dart/repos/community-x86_64/ dart/trunk/ dart/trunk/PKGBUILD ----------+ PKGBUILD | 74 +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 74 insertions(+) Added: dart/trunk/PKGBUILD =================================================================== --- dart/trunk/PKGBUILD (rev 0) +++ dart/trunk/PKGBUILD 2013-11-02 13:03:15 UTC (rev 100343) @@ -0,0 +1,74 @@ +# $Id: PKGBUILD 73557 2012-07-09 19:15:21Z arodseth $ +# Maintainer: Alexander Rødseth <[email protected]> +# Contributor: T. Jameson Little <t.jameson.little at gmail dot com> +# Contributor: Usagi Ito <[email protected]> +# Contributor: siasia <http://pastebin.com/qsBEmNCw> +# Contributor: Julien Nicoulaud <[email protected]> + +pkgname=dart +pkgver=0.8.7.0 +pkgrel=1 +pkgdesc='The dart programming language (includes SDK and editor)' +arch=('x86_64' 'i686') +url='http://www.dartlang.org/' +license=('BSD' 'EPL') +depends=('java-runtime' 'gtk2' 'desktop-file-utils' 'gconf') +makedepends=('imagemagick' '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') +else + source=("https://storage.googleapis.com/dart-editor-archive-integration/latest/darteditor-linux-32.zip") + sha256sums=('4752ad56ca58611cf67474d3ebb979a2e5f26e477a3c508cf5847c7207e837a1') +fi + +prepare() { + # Fix permissions + find "$pkgname" -type d -exec chmod 0755 '{}' + \ + -or -type f -exec chmod 0644 '{}' + + chmod +x "$pkgname/DartEditor" + chmod +x "$pkgname/dart-sdk/bin/"* + + # Prepare a desktop shortcut and icon + gendesk -n -f --pkgname 'darteditor' --name 'Dart Editor' \ + --exec 'darteditor %U' --pkgdesc 'Editor for the dart programming language' + convert "$pkgname/icon.xpm" "darteditor.png" + + # Fix paths + cd "$pkgname/dart-sdk/bin" + setconf dart2js BIN_DIR "/opt/$pkgname/dart-sdk/bin" + setconf dart2js PROG_NAME "/opt/$pkgname/dart-sdk/bin/dart2js" + setconf dartanalyzer SCRIPT_DIR "/opt/$pkgname/dart-sdk/bin" + setconf dartdoc BIN_DIR "/opt/$pkgname/dart-sdk/bin" +} + +package() { + # Create directories + install -d "$pkgdir"{"/opt/$pkgname",/usr/{bin,"share/doc/$pkgname"}} + + # Package the files + cp -a dart/* "$pkgdir/opt/$pkgname/" + + # Set up symbolic links for the executables + for f in dart dart2js dartanalyzer dartdoc pub; do + ln -s "/opt/$pkgname/dart-sdk/bin/$f" "$pkgdir/usr/bin/$f" + done + ln -s "/opt/$pkgname/DartEditor" "$pkgdir/usr/bin/darteditor" + + # Package samples and documentation + for f in samples about.html about_files; do + echo mv "$pkgdir/opt/$pkgname/$f" "$pkgdir/usr/share/doc/$pkgname/" + done + + # Set up a symbolic link for the configuration + 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" + install -Dm644 "darteditor.png" "$pkgdir/usr/share/pixmaps/darteditor.png" +} + +# vim:set ts=2 sw=2 et:
