mirror of
https://github.com/archlinuxarm/PKGBUILDs.git
synced 2024-11-08 22:45:43 +00:00
72 lines
2.8 KiB
Bash
72 lines
2.8 KiB
Bash
# 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>
|
|
|
|
# ALARM: Kevin Mihelich <kevin@archlinuxarm.org>
|
|
# - added source and sha512 for ARMv7h, AArch64 builds of Dart
|
|
# - configure paths and install symlinks for binaries shipped for arm
|
|
|
|
buildarch=12
|
|
|
|
pkgname=dart
|
|
pkgver=2.12.0
|
|
pkgrel=1
|
|
pkgdesc='The dart programming language SDK'
|
|
arch=('x86_64' 'armv7h' 'aarch64')
|
|
url='https://www.dartlang.org/'
|
|
depends=('bash')
|
|
license=('BSD')
|
|
makedepends=('setconf')
|
|
options=('!strip')
|
|
source_x86_64+=("$pkgname-$pkgver-64.zip::https://storage.googleapis.com/dart-archive/channels/stable/release/$pkgver/sdk/dartsdk-linux-x64-release.zip")
|
|
source_armv7h+=("$pkgname-$pkgver-arm.zip::https://storage.googleapis.com/dart-archive/channels/stable/release/$pkgver/sdk/dartsdk-linux-arm-release.zip")
|
|
source_aarch64+=("$pkgname-$pkgver-arm64.zip::https://storage.googleapis.com/dart-archive/channels/stable/release/$pkgver/sdk/dartsdk-linux-arm64-release.zip")
|
|
sha512sums_x86_64=('904064bf0984c65644e7c4128e05dcd673bf1ce62ed1475c7a970ecfc37d1c55de8624c52fb282cf2d80654a6390d359d8bffe04416222ee574db1eb1c51a493')
|
|
sha512sums_armv7h=('403e8cfffe693baea06f73fb8213a1bd460fc053ae9b2c3ce4f3df1faf04bbc6cfd5a508b65c7251499fe3ff6888e08874341eea86baabf1887b4bd8e0e5f7eb')
|
|
sha512sums_aarch64=('0dae0dcb9eb14ff890e640a9ede406f95da5e65defa070d5a4c9df816dc28ca307b3255fdbda8f1cdcdaf44ba97fa453408fbe6e8dfa59c883d48e1cef4f3b28')
|
|
|
|
prepare() {
|
|
# Fix permissions
|
|
find "$pkgname-sdk" -type d -exec chmod a+rx '{}' + \
|
|
-or -type f -exec chmod a+r '{}' +
|
|
|
|
cd "$pkgname-sdk/bin"
|
|
|
|
# Configure paths
|
|
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
|
|
}
|
|
|
|
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 dartanalyzer pub dartfmt dartdoc dart2native dartaotruntime; 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:
|