mirror of
https://github.com/archlinuxarm/PKGBUILDs.git
synced 2024-11-08 22:45:43 +00:00
community/dart to 2.0.0-1
This commit is contained in:
parent
06bb78e254
commit
a5bad66ad7
1 changed files with 12 additions and 14 deletions
|
@ -7,13 +7,14 @@
|
|||
# Contributor: Julien Nicoulaud <julien.nicoulaud@gmail.com>
|
||||
# Contributor: Jacob Bang <julemand101gmail.com>
|
||||
|
||||
# Arch Linux ARM changes:
|
||||
# - added source and sha512 for ARMv7h build of Dart
|
||||
# ALARM: Kevin Mihelich <kevin@archlinuxarm.org>
|
||||
# - added source and sha512 for ARMv7h build of Dart
|
||||
# - configure paths and install symlinks for binaries shipped for arm
|
||||
|
||||
buildarch=4
|
||||
|
||||
pkgname=dart
|
||||
pkgver=1.24.3
|
||||
pkgver=2.0.0
|
||||
pkgrel=1
|
||||
pkgdesc='The dart programming language SDK'
|
||||
arch=('x86_64' 'armv7h')
|
||||
|
@ -22,10 +23,9 @@ 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=('ec050c51f2adae2fa6c57955b93f29580c07969965c33e4625bc94e44eb22244af616d82fc5fe85b8d13b8371b9874ff55baa400ab321883fbc83c1075fae219')
|
||||
sha512sums_armv7h=('3102bf302f991d82cf4bf45e98381807519b0dfcf5638c05f442f87bbdaa0d924b19ca60a08630861c267cc7e093496cd5a5c0a4f55de879cf0a05009c587009')
|
||||
sha512sums_x86_64=('67a83676da8095d3c0787b10b2a998e3f5660766851a2c65110881b9740fc8bf4f99ee5b7677f2919361459888d00e6dc5542df79f647b12e4cee65d9cbe79d0')
|
||||
sha512sums_armv7h=('57fc963d9a179c84dc89397b616383aac7fb075475f8374d6ca8c4a2ed51e810037a1d5885fa0e9eee5b4007816817b06609c5715c715a81d56949a48f1dd17e')
|
||||
|
||||
prepare() {
|
||||
# Fix permissions
|
||||
|
@ -36,13 +36,11 @@ prepare() {
|
|||
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/"
|
||||
for _f in dartanalyzer pub dartfmt dartdoc; do
|
||||
setconf $_f BIN_DIR "/opt/$pkgname-sdk/bin"
|
||||
setconf $_f PROG_NAME "/opt/$pkgname-sdk/bin/$_f"
|
||||
setconf $_f SDK_DIR "/opt/$pkgname-sdk/"
|
||||
done
|
||||
|
||||
# Extract license (AUTHORS and LICENSE files are missing)
|
||||
head -n5 "../include/dart_api.h" > ../../LICENSE
|
||||
|
@ -56,7 +54,7 @@ package() {
|
|||
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
|
||||
for f in dart dartanalyzer pub dartfmt dartdoc; do
|
||||
ln -s "/opt/$pkgname-sdk/bin/$f" "$pkgdir/usr/bin/$f"
|
||||
done
|
||||
|
||||
|
|
Loading…
Reference in a new issue