PKGBUILDs/community/dart/PKGBUILD

72 lines
2.5 KiB
Bash
Raw Normal View History

2016-10-13 23:46:43 +00:00
# $Id$
# Maintainer: Alexander Rødseth <rodseth@gmail.com>
# Maintainer: Felix Yan <felixonmars@archlinux.org>
# Contributor: T. Jameson Little <t.jameson.little at gmail dot com>
# Contributor: Usagi Ito <usagi@WonderRabbitProject.net>
# Contributor: siasia <http://pastebin.com/qsBEmNCw>
# Contributor: Julien Nicoulaud <julien.nicoulaud@gmail.com>
# Contributor: Jacob Bang <julemand101gmail.com>
2018-08-31 00:22:51 +00:00
# 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
2016-10-13 23:46:43 +00:00
2016-10-21 12:26:34 +00:00
buildarch=4
2016-10-13 23:46:43 +00:00
pkgname=dart
2018-08-31 00:22:51 +00:00
pkgver=2.0.0
2016-10-13 23:46:43 +00:00
pkgrel=1
pkgdesc='The dart programming language SDK'
2017-12-20 12:42:47 +00:00
arch=('x86_64' 'armv7h')
2016-10-13 23:46:43 +00:00
url='http://www.dartlang.org/'
license=('BSD')
makedepends=('setconf')
options=('!strip')
2016-10-21 12:26:34 +00:00
source_x86_64+=("$pkgname-$pkgver-64.zip::http://storage.googleapis.com/dart-archive/channels/stable/release/latest/sdk/dartsdk-linux-x64-release.zip")
source_armv7h+=("$pkgname-$pkgver-arm.zip::http://storage.googleapis.com/dart-archive/channels/stable/release/latest/sdk/dartsdk-linux-arm-release.zip")
2018-08-31 00:22:51 +00:00
sha512sums_x86_64=('67a83676da8095d3c0787b10b2a998e3f5660766851a2c65110881b9740fc8bf4f99ee5b7677f2919361459888d00e6dc5542df79f647b12e4cee65d9cbe79d0')
sha512sums_armv7h=('57fc963d9a179c84dc89397b616383aac7fb075475f8374d6ca8c4a2ed51e810037a1d5885fa0e9eee5b4007816817b06609c5715c715a81d56949a48f1dd17e')
2016-10-13 23:46:43 +00:00
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
2018-08-31 00:22:51 +00:00
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
2016-10-13 23:46:43 +00:00
# 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
2018-08-31 00:22:51 +00:00
for f in dart dartanalyzer pub dartfmt dartdoc; do
2016-10-13 23:46:43 +00:00
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: