# $Id$ # Maintainer: Alexander Rødseth # Maintainer: Felix Yan # Contributor: T. Jameson Little # Contributor: Usagi Ito # Contributor: siasia # Contributor: Julien Nicoulaud # Contributor: Jacob Bang # Arch Linux ARM changes: # - added source and sha512 for ARMv7h build of Dart buildarch=4 pkgname=dart pkgver=1.24.1 pkgrel=1 pkgdesc='The dart programming language SDK' arch=('x86_64' 'i686' 'armv7h') url='http://www.dartlang.org/' license=('BSD') makedepends=('setconf') options=('!strip') source_x86_64+=("$pkgname-$pkgver-64.zip::http://storage.googleapis.com/dart-archive/channels/stable/release/latest/sdk/dartsdk-linux-x64-release.zip") source_i686+=("$pkgname-$pkgver-32.zip::http://storage.googleapis.com/dart-archive/channels/stable/release/latest/sdk/dartsdk-linux-ia32-release.zip") source_armv7h+=("$pkgname-$pkgver-arm.zip::http://storage.googleapis.com/dart-archive/channels/stable/release/latest/sdk/dartsdk-linux-arm-release.zip") sha512sums_x86_64=('28e0454244766be00eb0d20e439b8eaf50ce487a265513f8cb650a58a26fc5761d3c149d0ec1e09d7e070a12f3942b71b8e72f5bfa1886847a17fe9723106cab') sha512sums_i686=('0448e7c590dd5742c49f54e96c07d3793bc8ba246018f794a789cca1dd7f7a6e71596ad85576ef979db05603e9fa9cd43ef121b68d14830eabe6092ddffc1519') sha512ums_armv7h=('fa4a5d319461c80d4175a9011eabf7cfdfc675cefac43fe96a8db93123da261636ade58944f7c5755cbf39163f897dfc93cde81964c131c153825e24db6018ba') prepare() { # Fix permissions find "$pkgname-sdk" -type d -exec chmod 0755 '{}' + \ -or -type f -exec chmod 0644 '{}' + chmod +x "$pkgname-sdk/bin/"* cd "$pkgname-sdk/bin" # Configure paths setconf dart2js BIN_DIR "/opt/$pkgname-sdk/bin" setconf dart2js PROG_NAME "/opt/$pkgname-sdk/bin/dart2js" setconf dartanalyzer SCRIPT_DIR "/opt/$pkgname-sdk/bin" setconf pub BIN_DIR "/opt/$pkgname-sdk/bin" setconf pub SDK_DIR "/opt/$pkgname-sdk/" setconf dartfmt BIN_DIR "/opt/$pkgname-sdk/bin" setconf dartfmt SDK_DIR "/opt/$pkgname-sdk/" # Extract license (AUTHORS and LICENSE files are missing) head -n5 "../include/dart_api.h" > ../../LICENSE } package() { # Create directories install -d "$pkgdir"{"/opt/$pkgname-sdk",/usr/{bin,"share/doc/$pkgname-sdk"}} # Package the files cp -a "$pkgname-sdk/"* "$pkgdir/opt/$pkgname-sdk/" # Set up symbolic links for the executables for f in dart dart2js dartanalyzer pub dartfmt dartdevc; do ln -s "/opt/$pkgname-sdk/bin/$f" "$pkgdir/usr/bin/$f" done # Package samples and documentation for f in samples about.html about_files; do echo mv "$pkgdir/opt/$pkgname-sdk/$f" "$pkgdir/usr/share/doc/$pkgname/" done # BSD License install -Dm644 LICENSE \ "$pkgdir/usr/share/licenses/$pkgname/LICENSE" } # vim:set ts=2 sw=2 et: